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.
- 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
- Install the necessary libraries:
pip install Flask python-telegram-bot
- 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.
-
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. -
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. -
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.