This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| import logging | |
| import select | |
| import socket | |
| import struct | |
| from socketserver import ThreadingMixIn, TCPServer, StreamRequestHandler | |
| logging.basicConfig(level=logging.DEBUG) | |
| SOCKS_VERSION = 5 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import gdb | |
| import re | |
| from collections import namedtuple | |
| DETAILS = { | |
| # API 24 playstore | |
| # API 25 playstore | |
| '3.10.0+': (0xC0887D20, 0xC092138C, 316, 0xC0A7754C, 4), | |
| # API 26 playstore |
OlderNewer