es
Feedback
𝗟e𝘃i T𝗼o𝗹s

𝗟e𝘃i T𝗼o𝗹s

Canal cerrado

All tools are only for educational purposes

Mostrar más
El país no está especificadoLa categoría no está especificada
523
Suscriptores
Sin datos24 horas
Sin datos7 días
Sin datos30 días
Archivo de publicaciones

flask health checkup app 👨‍💻

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()

And The pycdas tool is coming soon! I'm working on it.😎 Use of pycdas: pycdas is used to disassemble code

👩‍💻 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 👨‍💻

⚠️ 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 🥂

💬 Telegram Buttons Bot Script 💬 Script ➡️ Click Script ➡️ Click Script ➡️ Click Script by: @Beasteren 🎁
💬 Telegram Buttons Bot Script 💬
Script ➡️ Click Script ➡️ Click Script ➡️ Click
Script by: @Beasteren 🎁

updated session string extractor

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()

Telegram Session String Extractor Source
Source: Click Source: Click Source: Click
Source Coded By: @Beasteren

Here's C based Encryption Source
Source: Click Source: Click Source: Click
Encryption Type: Very Strong
Source Coded By: @Beasteren

Here's binary permanent patcher
Source: Click Source: Click Source: Click
Source Coded By: @Beasteren

Here's Source of Web Tg Admin Pannel
Source: Click Source: Click Source: Click
Source Coded By: @Beasteren

Web Admin Pannel For Telegram Bot

🎁 Here's Your 4 in 1 Helper Bot 🎁
Bot: @PirateHelperRobot Bot: @PirateHelperRobot Bot: @PirateHelperRobot
🤍New Features Comes Soon🤍
Bot Coded By @Beasteren

🥂Link to Mp3 downloader script🥂
Script: Click Script: Click Script: Click
Script use: yt-dlp
Script Coded By @Beasteren

FastAPI Basic Backend🦖

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)

🤍Some Decoded Ig Scripts🤍
Decoded zip: Click Decoded zip: Click Decoded zip: Click
📌Send More Tools For Decode📌
Decode By @Beasteren

‼️Control Flow Flattening Script‼️
Script : Click Script : Click Script : Click
Script Coded By @Beasteren