𝗟e𝘃i T𝗼o𝗹s
قناة بسيطة
All tools are only for educational purposes
إظهار المزيدلم يتم تحديد البلدالفئة غير محددة
523
المشتركون
لا توجد بيانات24 ساعات
لا توجد بيانات7 أيام
لا توجد بيانات30 أيام
جاري تحميل البيانات...
القنوات المماثلة
لا توجد بيانات
هل تواجه مشاكل؟ يرجى تحديث الصفحة أو الاتصال بمدير الدعم الخاص بنا.
سحابة العلامات
لا توجد بيانات
هل تواجه مشاكل؟ يرجى تحديث الصفحة أو الاتصال بمدير الدعم الخاص بنا.
الإشارات الواردة والصادرة
---
---
---
---
---
---
جذب المشتركين
يوليو '26
يوليو '26
+524
في 57 قنوات
| التاريخ | نمو المشتركين | الإشارات | القنوات | |
| 29 يوليو | +2 |
منشورات القناة
| 2 | flask health checkup app 👨💻 | 113 |
| 3 | from flask import Flask, jsonify
from flask_cors import CORS
import os, logging, time
from datetime import datetime, timezone
app=Flask(__name__)
CORS(app)
logging.basicConfig(level=logging.INFO)
s=time.time()
@app.errorhandler(404)
def lovepreetog(e): return jsonify({'error':'Endpoint not found'}),404
@app.errorhandler(500)
def lovepreetog1(e): return jsonify({'error':'Internal server error'}),500
@app.route('/')
def lovepreetog2():
app.logger.info('Health check requested')
return jsonify({'status':'running','bot':'your bot name','service':'your service name'})
@app.route('/health')
def lovepreetog3(): return jsonify({'status':'healthy','timestamp':datetime.now(timezone.utc).isoformat()})
@app.route('/info')
def lovepreetog4():
return jsonify({'name':os.environ.get('SERVICE_NAME','your creation name'),'version':os.environ.get('VERSION','1.0.0'),'description':'your description','endpoints':{'/':'Health check','/health':'Detailed health status','/info':'Bot information','/metrics':'Basic performance metrics'}})
@app.route('/metrics')
def lovepreetog5(): return jsonify({'uptime_seconds':int(time.time()-s),'status':'operational'})
def lovepreetog6():
port=int(os.environ.get('PORT',8080))
app.run(host='0.0.0.0',port=port,debug=False,use_reloader=False)
if __name__=="__main__": lovepreetog6() | 114 |
| 4 | And The pycdas tool is coming soon!
I'm working on it.😎
Use of pycdas: pycdas is used to disassemble code | 700 |
| 5 | 👩💻 Here's pycdc decompiler for pyc 👩💻
pycdc For Android➡️ Click
pycdc For Android➡️ Click
pycdc For Android➡️ Click
pycdc For Windows➡️ Click
pycdc For Windows➡️ Click
pycdc For Windows➡️ Click
📌 How to use:
In terminal first give permission
to file with
chmod +x pycdc_Arm64
then run directly
./pycdc_Arm64 | ./pycdc_x86-64.exe
Then enter pyc file path:
Then enter Output Path:
Done! enjoy
This pycdc By: @Beasteren 👨💻 | 1 903 |
| 6 | ⚠️ Here's Curl Converter Source ⚠️
Source➡️ Click
Source➡️ Click
Source➡️ Click
Note: This Curl Converter Supports 23 Languages and 9 Formats 🎁
Source Coded By: @Beasteren 🥂 | 2 053 |
| 7 | 💬 Telegram Buttons Bot Script 💬
Script ➡️ Click
Script ➡️ Click
Script ➡️ Click
Script by: @Beasteren 🎁 | 2 257 |
| 8 | updated session string extractor | 375 |
| 9 | print("Coded By: @Beasteren")
from pyrogram import Client
import asyncio
import warnings
import logging
logging.basicConfig(level=logging.CRITICAL)
warnings.filterwarnings("ignore")
API_ID = 123456 #change with your api id
API_HASH = "your api hash"
async def main():
app = Client(
":memory:",
api_id=API_ID,
api_hash=API_HASH,
no_updates=False,
in_memory=True,
hide_password=True,
sleep_threshold=30
)
await app.start()
session_string = await app.export_session_string()
print("Your Session String:\n" + session_string + "\n\nDon't share! Keep safe!")
await app.stop()
loop = asyncio.new_event_loop()
asyncio.set_event_loop(loop)
loop.set_exception_handler(lambda loop, context: None)
loop.run_until_complete(main())
loop.close() | 376 |
| 10 | Telegram Session String
Extractor Source
Source: Click
Source: Click
Source: Click
Source Coded By: @Beasteren | 4 987 |
| 11 | Here's C based Encryption Source
Source: Click
Source: Click
Source: Click
Encryption Type: Very Strong
Source Coded By: @Beasteren | 3 999 |
| 12 | Here's binary permanent patcher
Source: Click
Source: Click
Source: Click
Source Coded By: @Beasteren | 3 809 |
| 13 | Here's Source of Web Tg
Admin Pannel
Source: Click
Source: Click
Source: Click
Source Coded By: @Beasteren | 4 533 |
| 14 | Web Admin Pannel For Telegram Bot | 427 |
| 15 | 🎁 Here's Your 4 in 1 Helper Bot 🎁
Bot: @PirateHelperRobot
Bot: @PirateHelperRobot
Bot: @PirateHelperRobot
🤍New Features Comes Soon🤍
Bot Coded By @Beasteren✅ | 375 |
| 16 | 🥂Link to Mp3 downloader script🥂
Script: Click
Script: Click
Script: Click
Script use: yt-dlp
Script Coded By @Beasteren✅ | 3 326 |
| 17 | FastAPI Basic Backend🦖 | 317 |
| 18 | from fastapi import FastAPI
import uvicorn
app = FastAPI()
@app.get("/")
def home():
return {"message": "@Beasteren // Your text"}
@app.get("/hello/{name}")
def hello(name: str):
return f"Namaste {name}!"
@app.get("/add/{a}/{b}")
def add(a: int, b: int):
result = a + b
return f"{a} + {b} = {result}"
if __name__ == "__main__":
uvicorn.run(app, host="0.0.0.0", port=8000) | 323 |
| 19 | 🤍Some Decoded Ig Scripts🤍
Decoded zip: Click
Decoded zip: Click
Decoded zip: Click
📌Send More Tools For Decode📌
Decode By @Beasteren✅ | 380 |
| 20 | ‼️Control Flow Flattening Script‼️
Script : Click
Script : Click
Script : Click
Script Coded By @Beasteren | 370 |
