/simple_telegramHoneypot

This honeypot is a simple Python script that monitors incoming connections on port 80, 22, 23 and sends Telegram notifications containing connection details, including timestamp, attempt count, IP address, and request headers.

Primary LanguagePython

simple_telegramHoneypot

Honeypot on Linux with Telegram Notifications

This simple honeypot listens on port 80, 22 and 23 and sends a message to your Telegram account with information about incoming connection attempts. The message includes the timestamp, attempt count, IP address, and request headers.

Setup

  1. Install Python (if not already installed) and create a virtual environment:
sudo apt-get update
sudo apt-get install python3-venv
python3 -m venv my_honeypot
source my_honeypot/bin/activate
  1. Install the necessary libraries:
pip install Flask python-telegram-bot
  1. Create a bot on Telegram:
  • Start a chat with the BotFather on Telegram.
  • Send the /newbot command to create a new bot.
  • Choose a name and username for your bot.
  • You will receive an API token for your bot. Copy it, as you will need it later.
  1. Edit the honeypot.py file and replace 'YOUR_TELEGRAM_API_TOKEN' with your Telegram API token and 'YOUR_TELEGRAM_USER_ID' with your Telegram user ID.

  2. To find your Telegram user ID, you can use the @userinfobot bot. Start a chat with it and send the /start command. You will receive your user ID.

  3. Run the honeypot.py script:

python honeypot.py

The honeypot is now active and listening on port 80, 22 and 23. When someone tries to view the content, you will receive a message on Telegram with information about the request.

Schermata del 2023-03-29 18-18-55