Skip to content

Instantly share code, notes, and snippets.

@deyixtan
deyixtan / sublime_text_patch.md
Last active April 8, 2024 06:11
Sublime Text Patching Guide

Automated Patching

Download slt.py python script (supports multiple build) from this repository.

Usage

python slt.py <"sublime_text file path">


Manual Patching

@deyixtan
deyixtan / kith-bypass.py
Created May 28, 2023 03:42
Reconnect to Kith cafe Wireless AP
import requests
import time
from urllib.parse import urlparse
PASSWORD = "tiramisu"
s = requests.Session()
def get_parsed_login_url(test_url="http://1.1.1.1"):
''' test_url is a random url used to redirect to the login page '''
res = s.get(test_url)
import concurrent.futures
import requests
import string
import urllib.parse
session = requests.Session()
url = f"http://localhost/"
headers = {
"Content-Type": "application/x-www-form-urlencoded"
}