Skip to content

Instantly share code, notes, and snippets.

View bizkut's full-sized avatar
🎯
Focusing

Hasanuddin Abu Bakar bizkut

🎯
Focusing
View GitHub Profile
@bizkut
bizkut / mobile_hotspot.py
Last active June 5, 2020 02:18
Use your mobile phone's data on your pc without tethering. Doesn't need jailbreak or root.
#!/usr/bin/env python
import socket
import select
import threading
HOST = ''
PORT = 50007
# use https or socks5 and use the same protocol on pc
PROXYHOST = 'your proxy server'
PROXYPORT = 8080
@bizkut
bizkut / mobile_hotspot.py
Created December 27, 2018 03:36
Use your mobile's data on your pc without tethering.
#!/usr/bin/env python
import socket
import select
import threading
HOST = ''
PORT = 50007
# use https or socks5 and use the same protocol on pc
PROXYHOST = 'your proxy server'
PROXYPORT = 8080