LocalSmail / Powershell-Token-Grabber

discord token grabber in powershell

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool



PowerShell Token Grabber

This tool is made for data exfiltration. All information collected is sent using discord webhooks.

Usage

  • Create a Webhook on your Discord Server. I recommend creating a new server.
  • Replace YOUR_WEBHOOK_HERE in line 6 with your webhook.

Want to obfuscate the code ?

Use Invoke-Obfuscation.
Or use Somalifuscator for .bat files

Screenshot

Screenshot

Features

  • Persistence via Task Scheduler & Windows Registry
  • Extracts WiFi Passwords
  • Extracts Browser Data (Brave, Chrome, Firefox, Microsoft Edge etc.)
  • Extracts Discord Token
  • Get System Information (Version, CPU, DISK, GPU, RAM, IP, Installed Apps etc.)
  • Takes Desktop Screenshot
  • List of Installed Applications
  • List of Installed Antiviruses
  • List of all Network Adapters
  • List of Apps that Run On Startup
  • List of Running Services & Applications
  • List TCP Connections and Underlying Process
  • Extracts Product Key

Uninstaller (Removes the Scheduled Task, Registry Key, Script Folder and ExclusionPaths)

  • Open a new Elevated Powershell Console and Paste the Contents below
$ErrorActionPreference = "SilentlyContinue"
function Cleanup {
  Unregister-ScheduledTask -TaskName "KDOT" -Confirm:$False
  Remove-Item -Path "$env:appdata\KDOT" -force -recurse
  Remove-MpPreference -ExclusionPath "$env:APPDATA\KDOT"
  Remove-MpPreference -ExclusionPath "$env:LOCALAPPDATA\Temp"
  Remove-ItemProperty –Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Run" –Name "KDOT" -Force
  Write-Host "[~] Successfully Uninstalled !" -ForegroundColor Green
}
Cleanup

Need Help?

License

This project is licensed under the MIT License - see the LICENSE file for details

Disclaimer

I, the creator, am not responsible for any actions, and or damages, caused by this software. You bear the full responsibility of your actions and acknowledge that this tool was created for educational purposes only. This tool's main purpose is NOT to be used maliciously, or on any system that you do not own, or have the right to use. By using this software, you automatically agree to the above.

Credits

About

discord token grabber in powershell

License:MIT License


Languages

Language:JavaScript 37.6%Language:Batchfile 26.1%Language:Python 18.8%Language:PowerShell 17.5%