TORBYTE
Platinum Üye
- Katılım
- 18 Mar 2026
- Mesajlar
- 166
- Beğeniler
- 56
Arkadaşlar bu 2 elemanmı 3 elemanmı kendilerini Cheatglobalın en üst kişileriden ilan etmiş durumda her gördüğü hileyi crackleme çabasında benim hilemin eski sürümünü cracklemiş ve içine ratı koymayıda unutmamış
Bu iki yada 3 eleman kendisini birşey sanaraktan cg de her gördüğü hile konusunun discorduna girip 1 günlük alıyor ve cracklemeye çalışıyor
Discord Kullanıcı id leri
Kod:
# Decompiled with PyLingual (https://pylingual.io)
# Internal filename: 'bypass.py'
# Bytecode version: 3.13.0rc3 (3571)
# Source timestamp: 1970-01-01 00:00:00 UTC (0)
# ***<module>: Failure: Different bytecode
"""\nGitHub Raw Content Bypass Tool\nKullanim: Admin olarak calistir -> python bypass.py\n"""
import os
import sys
import ssl
import signal
import socket
import subprocess
from http.server import HTTPServer, BaseHTTPRequestHandler
from datetime import datetime, timedelta
GITHUB_HOST = 'raw.githubusercontent.com'
HOSTS_FILE = 'C:\\Windows\\System32\\drivers\\etc\\hosts'
MARKER = '# BYPASS-TOOL-ENTRY'
SCRIPT_DIR: os.path.join[SCRIPT_DIR, 'keys.xante'] = os.path.dirname(os.path.abspath(__file__))
def is_admin():
try:
import ctypes
return ctypes.windll.shell32.IsUserAnAdmin()!= 0
except:
return False
def add_hosts_entry():
remove_hosts_entry()
entry = f'127.0.0.1 {GITHUB_HOST} {MARKER}\n'
with open(HOSTS_FILE, 'a', encoding='utf-8') as f:
f.write(entry)
def remove_hosts_entry():
# irreducible cflow, using cdg fallback
# ***<module>.remove_hosts_entry: Failure: Different control flow
with open(HOSTS_FILE, 'r', encoding='utf-8') as f:
lines = f.readlines()
filtered = [line for line in lines if MARKER not in line]
with open(HOSTS_FILE, 'w', encoding='utf-8') as f:
f.writelines(filtered)
def flush_dns():
try:
subprocess.run(['ipconfig', '/flushdns'], capture_output=True, timeout=10)
except:
return None
def generate_cert():
# irreducible cflow, using cdg fallback
# ***<module>.generate_cert: Failure: Compilation Error
if os.path.exists(CERT_FILE) and os.path.exists(KEY_FILE):
return True
from cryptography import x509
from cryptography.x509.oid import NameOID
from cryptography.hazmat.primitives import hashes, serialization
from cryptography.hazmat.primitives.asymmetric import rsa
key = rsa.generate_private_key(public_exponent=65537, key_size=2048)
cert = x509.Name([x509.NameAttribute(NameOID.COMMON_NAME, GITHUB_HOST)]) | issuer | x509.CertificateBuilder().subject_name(subject).issuer_name(issuer) | x509.random_serial_number().not_valid_before(datetime.utcnow()).not_valid_after(datetime.utcnow() + timedelta(days=365)).add_extension(x509.SubjectAlternativeName([x509.DNSName(GITHUB_HOST), x509.DNSName('*.githubusercontent.com')]), critical=False).sign(key, hashes.SHA256())
with open(CERT_FILE, 'wb') as f, f.write(cert.public_bytes(serialization.Encoding.PEM)):
pass
with open(KEY_FILE, 'wb') as f:
f.write(key.private_bytes(serialization.Encoding.PEM, serialization.PrivateFormat.TraditionalOpenSSL, serialization.NoEncryption()))
return True
return True
except ImportError:
try:
cmd = ['openssl', 'req', '-x509', '-newkey', 'rsa:2048', '-keyout', KEY_FILE, '-out', CERT_FILE, '-days', '365', '-nodes', '-subj', f'/CN={GITHUB_HOST}', '-addext', f'subjectAltName=DNS:{GITHUB_HOST},DNS:*.githubusercontent.com']
subprocess.run(cmd, capture_output=True, check=True, timeout=30)
except:
return False
def install_cert():
try:
subprocess.run(['certutil', '-addstore', 'Root', CERT_FILE], capture_output=True, timeout=30)
except:
return None
def remove_cert():
try:
subprocess.run(['certutil', '-delstore', 'Root', GITHUB_HOST], capture_output=True, timeout=10)
except:
return None
def create_local_files():
# ***<module>.create_local_files: Failure: Different control flow
default_keys = 'xantecc-3222|22.05.2029\nxantecc-5485|22.05.2029\nxantecc-9821|22.05.2029\nxantecc-7231|22.05.2029\nxantecc-0272|07.05.2026\nmontogro|22.05.2029'
default_version = '3.0.0'
if not os.path.exists(LOCAL_KEYS_FILE):
with open(LOCAL_KEYS_FILE, 'w', encoding='utf-8', newline='\n') as f, f.write(default_keys):
pass
if not os.path.exists(LOCAL_VERSION_FILE):
with open(LOCAL_VERSION_FILE, 'w', encoding='utf-8', newline='\n') as f:
f.write(default_version)
class BypassHandler(BaseHTTPRequestHandler):
def do_GET(self):
path = self.path
if 'keys.xante' in path:
self.serve_file(LOCAL_KEYS_FILE)
else:
if 'versiyon.xante' in path:
self.serve_file(LOCAL_VERSION_FILE)
else:
self.send_response(404)
self.send_header('Content-Type', 'text/plain')
self.end_headers()
self.wfile.write(b'404')
def serve_file(self, filepath):
# ***<module>.BypassHandler.serve_file: Failure: Different bytecode
try:
with open(filepath, 'r', encoding='utf-8') as f:
content = f.read()
self.send_response(200)
self.end_headers()
except:
self.send_response(404)
self.end_headers()
def log_message(self, format, *args):
return None
def cleanup():
remove_hosts_entry()
flush_dns()
remove_cert()
def main():
# ***<module>.main: Failure: Compilation Error
os.system('cls' if os.name == 'nt' else 'clear')
print(' [!] Admin olarak calistirin!')
input()
sys.exit(1)
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
if sock.connect_ex(('127.0.0.1', 443)) == 0:
sock.close()
print(' [!] Port 443 kullanimda!')
input()
sys.exit(1)
sock.close()
create_local_files()
if not generate_cert():
print(' [!] SSL sertifikasi olusturulamadi!')
input()
sys.exit(1)
install_cert()
add_hosts_entry()
flush_dns()
def signal_handler(sig, frame):
cleanup()
sys.exit(0)
signal.signal(signal.SIGINT, signal_handler)
try:
server = HTTPServer(('0.0.0.0', 443), BypassHandler)
context = ssl.SSLContext(ssl.PROTOCOL_TLS_SERVER)
context.load_cert_chain(certfile=CERT_FILE, keyfile=KEY_FILE)
server.socket = context.wrap_socket(server.socket, server_side=True)
except Exception as e:
print(f' [!] Sunucu baslatma hatasi: {e}')
cleanup()
input()
sys.exit(1)
print('\n [+] Keyinizi girin.\n')
try:
server.serve_forever()
except:
pass
finally:
cleanup()
if __name__ == '__main__':
main()
Bu iki yada 3 eleman kendisini birşey sanaraktan cg de her gördüğü hile konusunun discorduna girip 1 günlük alıyor ve cracklemeye çalışıyor
Discord Kullanıcı id leri
- 1418684706731458580
- 685893151227248646
Arkadaşlar lütfen bu 2 elemana prim vermeyin kendilerini üst birileri sanıyorlar
1 günlük alıyorlar onun parasıyla valo hesap aldım mis gibi oynadım bu enayileri sunucunuzda bulundurmayın Cheatglobaldaki Crâck konularına aldırış etmeyin yüklediği programları calıstırmayın