Skip to content

Instantly share code, notes, and snippets.

View tcjj3's full-sized avatar
📡
My amateur radio callsign is: BG7XUD

Chaojun Tan tcjj3

📡
My amateur radio callsign is: BG7XUD
View GitHub Profile
@tcjj3
tcjj3 / esp8266.py
Last active August 18, 2023 07:49 — forked from lordneon/esp8266.py
Parses ESP8266 firmware blobs in IDA. Drop this file into the loaders directory.
#!/usr/bin/python
# esptool imports
from __future__ import division, print_function
import argparse
import base64
import binascii
import copy
import hashlib
@tcjj3
tcjj3 / novpn.sh
Created February 21, 2023 06:19 — forked from kriswebdev/novpn.sh
novpn: Bypass VPN for specific apps [Linux / OpenVPN]
#!/bin/bash
# === INFO ===
# NoVPN
# Description: Bypass VPN tunnel for applications run through this tool.
VERSION="3.0.0"
# Author: KrisWebDev
# Requirements: Linux with kernel > 2.6.4 (released in 2008).
# This version is tested on Ubuntu 14.04 and 19.10 with bash.
# Main dependencies are automatically installed.
@tcjj3
tcjj3 / Pixel_CT4G.md
Created October 10, 2022 09:10 — forked from coeusite/Pixel_CT4G.md
Pixel 破解电信 4G 记录
@tcjj3
tcjj3 / fix-google-translate-cn.bat
Created October 3, 2022 04:10 — forked from bookfere/fix-google-translate-cn.bat
Fix Google Translate CN for Windows
:: Copyright (c)2022 https://bookfere.com
:: This is a batch script for fixing Google Translate and making it available
:: in the Chinese mainland. If you expirence any problem, visit the page below:
:: https://bookfere.com/post/1020.html
@setlocal enabledelayedexpansion
@echo off
set "source_domain=google.cn"
set "target_domain=translate.googleapis.com"
@tcjj3
tcjj3 / base64.inc.asp
Created June 17, 2022 01:22 — forked from matheuseduardo/base64.inc.asp
Base64 encoding / decoding functions in VbScript / Classic ASP
<%
Function Base64Encode(sText)
Dim oXML, oNode
Set oXML = CreateObject("Msxml2.DOMDocument.3.0")
Set oNode = oXML.CreateElement("base64")
oNode.dataType = "bin.base64"
oNode.nodeTypedValue = Stream_StringToBinary(sText)
Base64Encode = oNode.text
Set oNode = Nothing
Set oXML = Nothing
@tcjj3
tcjj3 / tcp.sh
Created September 23, 2021 06:56 — forked from zeruns/tcp.sh
bbr一键安装脚本
#!/usr/bin/env bash
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin
export PATH
#=================================================
# System Required: CentOS 6/7,Debian 8/9,Ubuntu 16+
# Description: BBR+BBR魔改版+BBRplus+Lotserver
# Version: 1.3.2
# Author: 千影,cx9208
# Blog: https://www.94ish.me/
@tcjj3
tcjj3 / tsduck-himawari.sh
Created January 6, 2021 08:16 — forked from sam210723/tsduck-himawari.sh
Demodulate HimawariCast carrier with TSDuck and handle Multi-Protocol Encapsulation wrapping
tsp -I dvb --adapter 0 --delivery-system "DVB-S2" --lnb "5150000000" --frequency 4148000000 --modulation QPSK --symbol-rate 2586148 --fec-inner "3/5" --roll-off 0.2 --polarity "horizontal" -P mpe --pid 0x03E9 --udp-forward --log -O drop
@tcjj3
tcjj3 / RootHelper.x.c
Created December 9, 2020 15:02 — forked from NullArray/RootHelper.x.c
RootHelper Obfuscated, Encrypted, Converted to C source
//#____ ____ __
//#\ \ / /____ _____/ |_ ___________
//# \ Y // __ \_/ ___\ __\/ _ \_ __ \
//# \ /\ ___/\ \___| | ( <_> ) | \/
//# \___/ \___ >\___ >__| \____/|__|
//# \/ \/
//#--Licensed under GNU GPL 3
//#----Authored by Vector/NullArray
//###############################################
@tcjj3
tcjj3 / RootHelper.x.c
Created December 9, 2020 15:02 — forked from NullArray/RootHelper.x.c
RootHelper Obfuscated, Encrypted, Converted to C source
//#____ ____ __
//#\ \ / /____ _____/ |_ ___________
//# \ Y // __ \_/ ___\ __\/ _ \_ __ \
//# \ /\ ___/\ \___| | ( <_> ) | \/
//# \___/ \___ >\___ >__| \____/|__|
//# \/ \/
//#--Licensed under GNU GPL 3
//#----Authored by Vector/NullArray
//###############################################
@tcjj3
tcjj3 / dns-ipv6-reply
Created December 9, 2020 15:02 — forked from lilydjwg/dns-ipv6-reply
Answer AAAA DNS queries on behalf of a DNS server
#!/usr/bin/env python3
import socket
import struct
import traceback
import subprocess
import time
import signal
import dnslib