Skip to content

dekrypted/MicroStealer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

61 Commits
 
 
 
 
 
 

Repository files navigation

💾 MicroStealer


NOTE: THIS NO LONGER WORKS

⚡ A compact Discord Token Logger/Discord Token Grabber made in only 13 lines of code! Injects into discord for long-term use.

🌟 If you enjoy this, star this repository and drop a follow! Thanks 😊

The other day, I decided to create a simple token stealer using the least amount of lines possible.
This is how it came out!

Please note, this is more of a PoC than a real grabber.
You most likely wont be using this.
However, when compiled with PyInstaller, it is quite small!

⚠ WARNING: This is ONLY for educational purposes.


- Features -

  • Injects, so even if the user changes their token you have it!
  • Works with any webhook, even if it's not discord!
  • Only 13 lines of code!
  • No external modules needed!

Usage (If for some reason you want to use it)

Simple! Open the file and where it says:

webhook = 'YOUR WEBHOOK'

You must replace 'YOUR WEBHOOK' with a valid webhook. Because of the nature of this grabber, you can use any webhook.
(Guilded, Discord, Telegram, even your own HTTP/SQL server! 👀)

Enjoy! 😊


Compiling to an EXE

With the help of PyInstaller, we can convert this script into an EXE file.
To do so, we must open the command prompt to the active directory of the script.
From here, install PyInstaller and compile!

Installing PyInstaller

C:\Star\This\Repo> pip install pyinstaller

Compiling the script

C:\And\Follow\My\Github> pyinstaller --clean --onefile -w {scriptname}.py `

Done!

Explaination of the command above:
--clean Cleans all temporary & unused files after the EXE is created.
--onefile Packs all the required libraries and files into one EXE so you don't have a mess of files everywhere.
-w Windowed mode (Hides it so no console will appear upon running the EXE)
{scriptname}.py The name of the script to compile. Replace {scriptname} with the name, of course.
C:\And\Follow\My\Github> Just my lame attempt of getting some follows :)

Credits: TriDiscord for helping reduce the file size! Thanks :)

About

A compact Discord Token Logger/Discord Token Grabber made in only 16 lines of code! Injects into discord for long-term use.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages