mirror of https://github.com/hak5/omg-payloads.git
commit
ce7f684f5d
|
@ -0,0 +1,27 @@
|
|||
# Send Telegram Messages - Linux ✅
|
||||
|
||||
A script used to prank your friends sending messages by using Telegram app.
|
||||
|
||||
**Category**: Prank
|
||||
|
||||
## Description
|
||||
|
||||
A script used to prank your friends sending messages by using Telegram app.
|
||||
|
||||
Opens a shell, runs the telegram-desktop app, search the user by the id, enter into the chat, write the message(s) and send, then close the app and the shell.
|
||||
|
||||
## Getting Started
|
||||
|
||||
### Dependencies
|
||||
|
||||
* Internet Connection
|
||||
* telegram-desktop installed and activated
|
||||
|
||||
### Executing program
|
||||
|
||||
* Plug in your device
|
||||
|
||||
### Settings
|
||||
|
||||
- Telegram username
|
||||
- Messages
|
|
@ -0,0 +1,36 @@
|
|||
REM #########################################
|
||||
REM # |
|
||||
REM # Title : Send Telegram Messages |
|
||||
REM # Author : Aleff |
|
||||
REM # Version : 1.0 |
|
||||
REM # Category : Prank |
|
||||
REM # Target : Linux |
|
||||
REM # |
|
||||
REM #########################################
|
||||
|
||||
REM Requirements:
|
||||
REM - Internet Connection
|
||||
REM - telegram-desktop installed and activated
|
||||
|
||||
DEFINE #USERNAME @example
|
||||
DEFINE #MESSAGE example
|
||||
|
||||
DEFAULT_DELAY 500
|
||||
CTRL ALT t
|
||||
DELAY 2000
|
||||
|
||||
STRINGLN telegram-desktop
|
||||
REM It depends by the computer...
|
||||
DELAY 3000
|
||||
|
||||
REM Define the message receiver username
|
||||
STRINGLN #USERNAME
|
||||
|
||||
REM Define the message(s)
|
||||
STRINGLN #MESSAGE
|
||||
REM other messages here...
|
||||
|
||||
REM Closing Telegram App and the Shell
|
||||
ALT F4
|
||||
CTRL c
|
||||
ALT F4
|
Loading…
Reference in New Issue