CARVIEW |
Select Language
HTTP/2 200
date: Sat, 11 Oct 2025 13:13:47 GMT
content-type: text/html; charset=UTF-8
server: cloudflare
x-frame-options: DENY
x-content-type-options: nosniff
x-xss-protection: 1;mode=block
vary: accept-encoding
cf-cache-status: DYNAMIC
content-encoding: gzip
set-cookie: _csrf-frontend=47a1bdca0aaca069406bf00de07aad8ec7aa9ca0d7b1697d02c5e940f73b1073a%3A2%3A%7Bi%3A0%3Bs%3A14%3A%22_csrf-frontend%22%3Bi%3A1%3Bs%3A32%3A%22RKz3GKtfgP8YPkEiCRNy8HCdcoIXhJAv%22%3B%7D; HttpOnly; Path=/
cf-ray: 98ce9de23d88b277-BLR
TZX TEAM SERVER - Pastebin.com
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- from fastapi import FastAPI, Request, Depends, HTTPException, status
- from fastapi.responses import HTMLResponse
- from fastapi.security import HTTPBasic, HTTPBasicCredentials
- import uvicorn
- import asyncio
- import socket
- import threading
- import logging
- from rich.console import Console
- from rich.panel import Panel
- import struct
- import select
- import secrets
- # إعداد تسجيل الأخطاء
- logging.basicConfig(
- filename='socks5.log',
- level=logging.INFO,
- format='%(asctime)s - %(levelname)s - %(message)s'
- )
- console = Console()
- app = FastAPI(title="TzX Team SOCKS5 Server")
- # إعداد المصادقة الأساسية
- security = HTTPBasic()
- USERNAME = "admin" # يمكنك تغييره
- PASSWORD = "TzX2999" # يمكنك تغييره
- # التحقق من اسم المستخدم وكلمة المرور
- def verify_credentials(credentials: HTTPBasicCredentials = Depends(security)):
- correct_username = secrets.compare_digest(credentials.username, USERNAME)
- correct_password = secrets.compare_digest(credentials.password, PASSWORD)
- if not (correct_username and correct_password):
- raise HTTPException(
- status_code=status.HTTP_401_UNAUTHORIZED,
- detail="اسم المستخدم أو كلمة المرور غير صحيحة",
- headers={"WWW-Authenticate": "Basic"},
- )
- return credentials.username
- # حالة الخادوم
- server_running = False
- server_thread = None
- server_instance = None
- # HTML للواجهة الفاخرة
- html_content = """
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>TzX Team - Future Coding 2999</title>
- <link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Roboto+Mono&display=swap" rel="stylesheet">
- <style>
- body {
- margin: 0;
- height: 100vh;
- display: flex;
- justify-content: center;
- align-items: center;
- background: linear-gradient(135deg, #0f0f23 0%, #1a1a3d 100%);
- font-family: 'Orbitron', sans-serif;
- color: #0ff;
- overflow: hidden;
- position: relative;
- }
- .container {
- text-align: center;
- z-index: 2;
- position: relative;
- }
- .logo {
- font-size: 5em;
- text-shadow: 0 0 15px #0ff, 0 0 30px #0ff, 0 0 45px #0ff;
- animation: neon 1.5s ease-in-out infinite alternate, pulse 3s infinite;
- letter-spacing: 3px;
- }
- .status {
- font-size: 1.5em;
- margin-top: 20px;
- color: #ff0;
- text-shadow: 0 0 8px #ff0;
- }
- .buttons {
- margin-top: 20px;
- }
- .button {
- padding: 10px 20px;
- margin: 0 10px;
- font-family: 'Orbitron', sans-serif;
- font-size: 1.2em;
- color: #0ff;
- background: transparent;
- border: 2px solid #0ff;
- border-radius: 5px;
- cursor: pointer;
- transition: all 0.3s;
- text-shadow: 0 0 5px #0ff;
- }
- .button:hover {
- background: #0ff;
- color: #000;
- text-shadow: none;
- }
- .commands {
- margin-top: 30px;
- font-family: 'Roboto Mono', monospace;
- font-size: 1em;
- color: #0f0;
- text-align: left;
- max-width: 600px;
- margin-left: auto;
- margin-right: auto;
- background: rgba(0, 0, 0, 0.7);
- padding: 20px;
- border-radius: 10px;
- border: 1px solid #0ff;
- }
- canvas {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- z-index: 0;
- }
- .grid-overlay {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background: url('data:image/svg+xml;utf8,<svg xmlns="https://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><path d="M0 0v40h40V0H0zm1 1h38v38H1V1z" fill="none" stroke="rgba(0,255,255,0.2)" stroke-width="0.5"/></svg>') repeat;
- opacity: 0.3;
- z-index: 1;
- }
- @keyframes neon {
- from { text-shadow: 0 0 10px #0ff, 0 0 20px #0ff, 0 0 30px #0ff; }
- to { text-shadow: 0 0 20px #0ff, 0 0 40px #0ff, 0 0 60px #0ff; }
- }
- @keyframes pulse {
- 0% { transform: scale(1); }
- 50% { transform: scale(1.05); }
- 100% { transform: scale(1); }
- }
- @media (max-width: 600px) {
- .logo { font-size: 3em; }
- .status { font-size: 1em; }
- .button { font-size: 1em; padding: 8px 16px; }
- .commands { font-size: 0.9em; padding: 15px; }
- }
- </style>
- </head>
- <body>
- <div class="grid-overlay"></div>
- <canvas id="particleCanvas"></canvas>
- <div class="container">
- <div class="logo">TzX Team</div>
- <div class="status" id="status">SOCKS5 Server: Stopped</div>
- <div class="buttons">
- <button class="button" onclick="startServer()">تشغيل الخادوم</button>
- <button class="button" onclick="stopServer()">إيقاف الخادوم</button>
- <a href="https://t.me/noseyrobot" target="_blank"><button class="button">تواصل مع المطور</button></a>
- <a href="https://t.me/TzX_V1" target="_blank"><button class="button" onclick="joinChannel()">انضم إلى القناة</button></a>
- </div>
- <div class="commands">
- <h3>الأوامر:</h3>
- <ul>
- <li>الاتصال بالخادوم: استخدم عميل SOCKS5 على <code>127.0.0.1:1081</code></li>
- <li>إعداد العميل: ضبط البروكسي على SOCKS5 مع العنوان <code>127.0.0.1</code> والمنفذ <code>1081</code></li>
- <li>مراقبة السجلات: تحقق من ملف <code>socks5.log</code> لتتبع الاتصالات</li>
- <li>إيقاف الخادوم: اضغط على زر "إيقاف الخادوم" أو Ctrl+C في الطرفية</li>
- </ul>
- </div>
- </div>
- <script>
- const canvas = document.getElementById('particleCanvas');
- const ctx = canvas.getContext('2d');
- canvas.width = window.innerWidth;
- canvas.height = window.innerHeight;
- const particles = [];
- class Particle {
- constructor() {
- this.x = Math.random() * canvas.width;
- this.y = Math.random() * canvas.height;
- this.size = Math.random() * 5 + 1;
- this.speedX = Math.random() * 2 - 1;
- this.speedY = Math.random() * 2 - 1;
- }
- update() {
- this.x += this.speedX;
- this.y += this.speedY;
- if (this.size > 0.2) this.size -= 0.05;
- if (this.x < 0 || this.x > canvas.width) this.speedX *= -1;
- if (this.y < 0 || this.y > canvas.height) this.speedY *= -1;
- }
- draw() {
- ctx.fillStyle = 'rgba(0, 255, 255, 0.8)';
- ctx.beginPath();
- ctx.arc(this.x, this.y, this.size, 0, Math.PI * 2);
- ctx.fill();
- }
- }
- function init() {
- for (let i = 0; i < 100; i++) {
- particles.push(new Particle());
- }
- }
- function animate() {
- ctx.clearRect(0, 0, canvas.width, canvas.height);
- particles.forEach((particle, index) => {
- particle.update();
- particle.draw();
- if (particle.size <= 0.2) {
- particles.splice(index, 1);
- particles.push(new Particle());
- }
- });
- requestAnimationFrame(animate);
- }
- init();
- animate();
- window.addEventListener('resize', () => {
- canvas.width = window.innerWidth;
- canvas.height = window.innerHeight;
- });
- async function startServer() {
- const response = await fetch('/start_server', { method: 'POST' });
- const result = await response.json();
- document.getElementById('status').innerText = result.message;
- }
- async function stopServer() {
- const response = await fetch('/stop_server', { method: 'POST' });
- const result = await response.json();
- document.getElementById('status').innerText = result.message;
- }
- async function joinChannel() {
- alert('يرجى الانضمام إلى قناة https://t.me/TzX_V1 لتفعيل الخادوم!');
- }
- </script>
- </body>
- </html>
- """
- class SOCKS5Server:
- def __init__(self, host='127.0.0.1', port=1081, max_connections=100):
- self.host = host
- self.port = port
- self.max_connections = max_connections
- self.server_socket = None
- self.running = False
- def setup_socket(self):
- self.server_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
- self.server_socket.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
- self.server_socket.bind((self.host, self.port))
- self.server_socket.listen(self.max_connections)
- console.print(Panel(f"SOCKS5 Server started on {self.host}:{self.port} | TzX Team", style="bold cyan"))
- async def handle_auth(self, client_socket, addr):
- try:
- loop = asyncio.get_running_loop()
- data = await loop.sock_recv(client_socket, 1024)
- if not data or data[0] != 0x05:
- return False
- nmethods = data[1]
- methods = data[2:2 + nmethods]
- if 0x00 not in methods:
- await loop.sock_sendall(client_socket, b'\x05\xff')
- return False
- await loop.sock_sendall(client_socket, b'\x05\x00')
- return True
- except Exception as e:
- logging.error(f"Client {addr}: Auth error - {e}")
- return False
- async def handle_request(self, client_socket, addr):
- try:
- loop = asyncio.get_running_loop()
- data = await loop.sock_recv(client_socket, 1024)
- if not data or data[0] != 0x05:
- return False
- cmd, _, atype = data[1:4]
- if cmd != 0x01:
- await loop.sock_sendall(client_socket, b'\x05\x07\x00\x01\x00\x00\x00\x00\x00\x00')
- return False
- if atype == 0x01: # IPv4
- dest_addr = socket.inet_ntoa(data[4:8])
- dest_port = struct.unpack('>H', data[8:10])[0]
- elif atype == 0x03: # Domain name
- addr_len = data[4]
- dest_addr = data[5:5 + addr_len].decode()
- dest_port = struct.unpack('>H', data[5 + addr_len:7 + addr_len])[0]
- else:
- await loop.sock_sendall(client_socket, b'\x05\x08\x00\x01\x00\x00\x00\x00\x00\x00')
- return False
- target_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
- try:
- target_socket.connect((dest_addr, dest_port))
- await loop.sock_sendall(client_socket, b'\x05\x00\x00\x01' + socket.inet_aton('0.0.0.0') + b'\x00\x00')
- return target_socket
- except Exception as e:
- await loop.sock_sendall(client_socket, b'\x05\x04\x00\x01\x00\x00\x00\x00\x00\x00')
- logging.error(f"Client {addr}: Connection to {dest_addr}:{dest_port} failed - {e}")
- return False
- except Exception as e:
- logging.error(f"Client {addr}: Request error - {e}")
- return False
- async def relay_data(self, client_socket, target_socket, addr):
- try:
- loop = asyncio.get_running_loop()
- while True:
- r, _, _ = await loop.run_in_executor(None, select.select, [client_socket, target_socket], [], [])
- if client_socket in r:
- data = await loop.sock_recv(client_socket, 4096)
- if not data:
- break
- await loop.sock_sendall(target_socket, data)
- if target_socket in r:
- data = await loop.sock_recv(target_socket, 4096)
- if not data:
- break
- await loop.sock_sendall(client_socket, data)
- except Exception as e:
- logging.error(f"Client {addr}: Relay error - {e}")
- finally:
- client_socket.close()
- target_socket.close()
- async def handle_client(self, client_socket, addr):
- try:
- if not await self.handle_auth(client_socket, addr):
- return
- target_socket = await self.handle_request(client_socket, addr)
- if target_socket:
- console.print(f"[green]Client {addr}: Connected to target | TzX Team[/green]")
- await self.relay_data(client_socket, target_socket, addr)
- else:
- console.print(f"[red]Client {addr}: Connection failed | TzX Team[/red]")
- except Exception as e:
- logging.error(f"Client {addr}: General error - {e}")
- finally:
- client_socket.close()
- async def accept_connections(self):
- loop = asyncio.get_running_loop()
- while self.running:
- try:
- client_socket, addr = await loop.sock_accept(self.server_socket)
- loop.create_task(self.handle_client(client_socket, addr))
- except Exception as e:
- if self.running:
- logging.error(f"Accept error: {e}")
- def start(self):
- if not self.running:
- self.running = True
- self.setup_socket()
- asyncio.run(self.accept_connections())
- def stop(self):
- if self.running:
- self.running = False
- if self.server_socket:
- self.server_socket.close()
- console.print("[yellow]SOCKS5 Server stopped | TzX Team[/yellow]")
- @app.get("/", response_class=HTMLResponse)
- async def root(username: str = Depends(verify_credentials)):
- return HTMLResponse(content=html_content)
- @app.post("/start_server")
- async def start_server(username: str = Depends(verify_credentials)):
- global server_running, server_thread, server_instance
- if not server_running:
- server_instance = SOCKS5Server()
- server_thread = threading.Thread(target=server_instance.start, daemon=True)
- server_thread.start()
- server_running = True
- return {"message": "SOCKS5 Server: Running | Port: 1081"}
- return {"message": "SOCKS5 Server: Already Running"}
- @app.post("/stop_server")
- async def stop_server(username: str = Depends(verify_credentials)):
- global server_running, server_thread, server_instance
- if server_running:
- server_instance.stop()
- server_running = False
- server_thread = None
- server_instance = None
- return {"message": "SOCKS5 Server: Stopped"}
- return {"message": "SOCKS5 Server: Already Stopped"}
- if __name__ == "__main__":
- uvicorn.run(app, host="127.0.0.1", port=1080, log_level="error")
Advertisement
Add Comment
Please, Sign In to add comment
-
✅ Make $2500 in 20 minutes⭐⭐⭐ 2
JavaScript | 4 sec ago | 0.24 KB
-
✅⭐ Make huge profits on trading ✅ NEVER SEEN...
JavaScript | 8 sec ago | 0.24 KB
-
⭐✅ Marketplace Glitch ✅ Working ✅ NEVER SEEN...
JavaScript | 17 sec ago | 0.24 KB
-
⭐⭐Exchange Exploit⭐⭐ 1
JavaScript | 17 sec ago | 0.24 KB
-
✅⭐ Make $2500 in 15 minutes ✅ NEVER SEEN BEFO...
JavaScript | 26 sec ago | 0.24 KB
-
✅⭐ Make huge profits on trading ⭐⭐ A
JavaScript | 28 sec ago | 0.24 KB
-
⭐⭐⭐Crypto Accounts⭐⭐
Java | 35 sec ago | 0.10 KB
-
⭐ Instant BTC Profit Method ✅ NEVER SEEN BEFO...
JavaScript | 40 sec ago | 0.24 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand