-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create HowToUse.md for TelegramRemoteCodeExecutor
- Loading branch information
1 parent
c00b728
commit d38eb47
Showing
1 changed file
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# How to use Telegram Remote Code Executor | ||
|
||
- Get Token for bot from [Telegram BotFather](https://t.me/botfather) and update `API_KEY` on line 7 of `TelegramRemoteCodeExecutor.py` | ||
- Get Attacker's User ID from [UserInfoBot](https://t.me/userinfobot) or run TelegramRemoteCodeExecutor.py and use `/start` command to get user id and then update `CHAT_ID` on line 8 of `TelegramRemoteCodeExecutor.py` | ||
- Create trojan/malware using `pyinstaller` and send it to victim | ||
- When victims runs malware program, attacker will be notified through the bot on telegram | ||
- Attacker can use commands to exploit the machine remotely through Telegram over the internet | ||
|
||
|
||
| Command | Description | Params | | ||
|:-----:|:--------:|:-------: | | ||
| /start | starts interaction with the bot and returns command issuer details | None | | ||
| /help | returns help menu | None | | ||
| /exec | executes command on vitcim's machine | **command** | | ||
| /cd** | change current working directory to specified path | **path** | | ||
| /ls | list all the directories and folders in the current working directory | None | | ||
| /download | download file from the victims machine to attacker's via telegram chat | relative or complete file path | |