HWID Cloaker - Hwid ban kaldırıcı

Valorant için dener paylaşırdım fakat internetim kötü .d
 
cihazın uyumlu değil demekki


fazladan internet vs çekmiyor sadece mac adresini değiştiriyor
yok o anlamda demedim internet valo indirmeye/acmaya yemiyor. Ama buyrun aşağıya kodun daha gelişmiş halini bıraktım, bunlarıda es geçmeyelim.

Kod:
import subprocess
import uuid
import tkinter as tk
from tkinter import messagebox
import winreg as reg

def get_hwid():
    try:
        command = "wmic csproduct get uuid"
        hwid = subprocess.check_output(command, shell=True)
        return hwid.decode().split('\n')[1].strip()
    except Exception as e:
        return None

def get_hdd_serial():
    try:
        command = "wmic diskdrive get serialnumber"
        serial = subprocess.check_output(command, shell=True)
        return serial.decode().split('\n')[1].strip()
    except Exception as e:
        return None

def get_mac_address():
    try:
        command = "getmac"
        mac = subprocess.check_output(command, shell=True).decode().split('\n')[0].strip()
        return mac.split()[0] if mac else None
    except Exception as e:
        return None

def get_bios_serial():
    try:
        command = "wmic bios get serialnumber"
        serial = subprocess.check_output(command, shell=True)
        return serial.decode().split('\n')[1].strip()
    except Exception as e:
        return None

def get_processor_id():
    try:
        key = reg.OpenKey(reg.HKEY_LOCAL_MACHINE, r"HARDWARE\DESCRIPTION\System\CentralProcessor\0")
        processor_id = reg.QueryValueEx(key, "ProcessorNameString")[0]
        reg.CloseKey(key)
        return processor_id
    except Exception as e:
        return None

def generate_fake_hwid():
    return str(uuid.uuid4()).upper()

def generate_fake_serial():
    return ''.join([uuid.uuid4().hex[:8].upper()])

def generate_fake_mac():
    return "02:00:00:%02x:%02x:%02x" % (
        uuid.uuid4().node >> 16 & 0xff,
        uuid.uuid4().node >> 8 & 0xff,
        uuid.uuid4().node & 0xff
    )

def generate_fake_bios_serial():
    return ''.join([uuid.uuid4().hex[:12].upper()])

def generate_fake_processor_id():
    return "Intel(R) Core(TM) i7-%d CPU @ 3.%dGHz" % (
        uuid.uuid4().node % 10000,
        uuid.uuid4().node % 10
    )

def apply_fake_hwid():
    original_hwid = get_hwid()
    original_serial = get_hdd_serial()
    original_mac = get_mac_address()
    original_bios_serial = get_bios_serial()
    original_processor_id = get_processor_id()

    if not all([original_hwid, original_serial, original_mac, original_bios_serial, original_processor_id]):
        result_label.config(text="Cihaz uyuşmazlığı: Bilgiler alınamadı.", foreground="red", background="yellow")
        return

    fake_hwid = generate_fake_hwid()
    fake_serial = generate_fake_serial()
    fake_mac = generate_fake_mac()
    fake_bios_serial = generate_fake_bios_serial()
    fake_processor_id = generate_fake_processor_id()

    hwid_label.config(text=f"HWID: {fake_hwid}", background="lightblue")
    serial_label.config(text=f"HDD Seri No: {fake_serial}", background="lightblue")
    mac_label.config(text=f"MAC Adresi: {fake_mac}", background="lightblue")
    bios_serial_label.config(text=f"BIOS Seri No: {fake_bios_serial}", background="lightblue")
    processor_label.config(text=f"İşlemci ID: {fake_processor_id}", background="lightblue")
    result_label.config(text="Başarıyla değiştirildi!", foreground="green", background="lightgreen")

    messagebox.showinfo("Başarılı", "HWID, HDD Seri No, MAC Adresi, BIOS Seri No ve İşlemci ID başarıyla değiştirildi.")

def create_gui():
    global hwid_label, serial_label, mac_label, bios_serial_label, processor_label, result_label

    root = tk.Tk()
    root.title("HWID Cloaker")

    root.configure(bg="#2C3E50")

    start_button = tk.Button(root, text="Başlat", command=apply_fake_hwid, bg="#2980B9", fg="white", font=("Helvetica", 12, "bold"), padx=20, pady=10)
    start_button.pack(pady=20)

    hwid_label = tk.Label(root, text="HWID: Henüz uygulanmadı", font=('Helvetica', 12), bg="#2C3E50", fg="white")
    hwid_label.pack(pady=5)

    serial_label = tk.Label(root, text="HDD Seri No: Henüz uygulanmadı", font=('Helvetica', 12), bg="#2C3E50", fg="white")
    serial_label.pack(pady=5)

    mac_label = tk.Label(root, text="MAC Adresi: Henüz uygulanmadı", font=('Helvetica', 12), bg="#2C3E50", fg="white")
    mac_label.pack(pady=5)

    bios_serial_label = tk.Label(root, text="BIOS Seri No: Henüz uygulanmadı", font=('Helvetica', 12), bg="#2C3E50", fg="white")
    bios_serial_label.pack(pady=5)

    processor_label = tk.Label(root, text="İşlemci ID: Henüz uygulanmadı", font=('Helvetica', 12), bg="#2C3E50", fg="white")
    processor_label.pack(pady=5)

    result_label = tk.Label(root, text="", font=('Helvetica', 12, 'bold'), bg="#2C3E50", fg="white")
    result_label.pack(pady=10)

    root.geometry("450x450")
    root.mainloop()

create_gui()
 
yok o anlamda demedim internet valo indirmeye/acmaya yemiyor. Ama buyrun aşağıya kodun daha gelişmiş halini bıraktım, bunlarıda es geçmeyelim.

Kod:
import subprocess
import uuid
import tkinter as tk
from tkinter import messagebox
import winreg as reg

def get_hwid():
    try:
        command = "wmic csproduct get uuid"
        hwid = subprocess.check_output(command, shell=True)
        return hwid.decode().split('\n')[1].strip()
    except Exception as e:
        return None

def get_hdd_serial():
    try:
        command = "wmic diskdrive get serialnumber"
        serial = subprocess.check_output(command, shell=True)
        return serial.decode().split('\n')[1].strip()
    except Exception as e:
        return None

def get_mac_address():
    try:
        command = "getmac"
        mac = subprocess.check_output(command, shell=True).decode().split('\n')[0].strip()
        return mac.split()[0] if mac else None
    except Exception as e:
        return None

def get_bios_serial():
    try:
        command = "wmic bios get serialnumber"
        serial = subprocess.check_output(command, shell=True)
        return serial.decode().split('\n')[1].strip()
    except Exception as e:
        return None

def get_processor_id():
    try:
        key = reg.OpenKey(reg.HKEY_LOCAL_MACHINE, r"HARDWARE\DESCRIPTION\System\CentralProcessor\0")
        processor_id = reg.QueryValueEx(key, "ProcessorNameString")[0]
        reg.CloseKey(key)
        return processor_id
    except Exception as e:
        return None

def generate_fake_hwid():
    return str(uuid.uuid4()).upper()

def generate_fake_serial():
    return ''.join([uuid.uuid4().hex[:8].upper()])

def generate_fake_mac():
    return "02:00:00:%02x:%02x:%02x" % (
        uuid.uuid4().node >> 16 & 0xff,
        uuid.uuid4().node >> 8 & 0xff,
        uuid.uuid4().node & 0xff
    )

def generate_fake_bios_serial():
    return ''.join([uuid.uuid4().hex[:12].upper()])

def generate_fake_processor_id():
    return "Intel(R) Core(TM) i7-%d CPU @ 3.%dGHz" % (
        uuid.uuid4().node % 10000,
        uuid.uuid4().node % 10
    )

def apply_fake_hwid():
    original_hwid = get_hwid()
    original_serial = get_hdd_serial()
    original_mac = get_mac_address()
    original_bios_serial = get_bios_serial()
    original_processor_id = get_processor_id()

    if not all([original_hwid, original_serial, original_mac, original_bios_serial, original_processor_id]):
        result_label.config(text="Cihaz uyuşmazlığı: Bilgiler alınamadı.", foreground="red", background="yellow")
        return

    fake_hwid = generate_fake_hwid()
    fake_serial = generate_fake_serial()
    fake_mac = generate_fake_mac()
    fake_bios_serial = generate_fake_bios_serial()
    fake_processor_id = generate_fake_processor_id()

    hwid_label.config(text=f"HWID: {fake_hwid}", background="lightblue")
    serial_label.config(text=f"HDD Seri No: {fake_serial}", background="lightblue")
    mac_label.config(text=f"MAC Adresi: {fake_mac}", background="lightblue")
    bios_serial_label.config(text=f"BIOS Seri No: {fake_bios_serial}", background="lightblue")
    processor_label.config(text=f"İşlemci ID: {fake_processor_id}", background="lightblue")
    result_label.config(text="Başarıyla değiştirildi!", foreground="green", background="lightgreen")

    messagebox.showinfo("Başarılı", "HWID, HDD Seri No, MAC Adresi, BIOS Seri No ve İşlemci ID başarıyla değiştirildi.")

def create_gui():
    global hwid_label, serial_label, mac_label, bios_serial_label, processor_label, result_label

    root = tk.Tk()
    root.title("HWID Cloaker")

    root.configure(bg="#2C3E50")

    start_button = tk.Button(root, text="Başlat", command=apply_fake_hwid, bg="#2980B9", fg="white", font=("Helvetica", 12, "bold"), padx=20, pady=10)
    start_button.pack(pady=20)

    hwid_label = tk.Label(root, text="HWID: Henüz uygulanmadı", font=('Helvetica', 12), bg="#2C3E50", fg="white")
    hwid_label.pack(pady=5)

    serial_label = tk.Label(root, text="HDD Seri No: Henüz uygulanmadı", font=('Helvetica', 12), bg="#2C3E50", fg="white")
    serial_label.pack(pady=5)

    mac_label = tk.Label(root, text="MAC Adresi: Henüz uygulanmadı", font=('Helvetica', 12), bg="#2C3E50", fg="white")
    mac_label.pack(pady=5)

    bios_serial_label = tk.Label(root, text="BIOS Seri No: Henüz uygulanmadı", font=('Helvetica', 12), bg="#2C3E50", fg="white")
    bios_serial_label.pack(pady=5)

    processor_label = tk.Label(root, text="İşlemci ID: Henüz uygulanmadı", font=('Helvetica', 12), bg="#2C3E50", fg="white")
    processor_label.pack(pady=5)

    result_label = tk.Label(root, text="", font=('Helvetica', 12, 'bold'), bg="#2C3E50", fg="white")
    result_label.pack(pady=10)

    root.geometry("450x450")
    root.mainloop()

create_gui()
ee ne ekledin ? bi değişiklik göremiyorum
 
ChatGPT ye yaptırdığın python ile yazılımcıyım diye geçinip yeni proje öneriniz var mı diye konular açarsan anlamazsın tabi az gözün ingilizcen varsa oku bak anlarsın
Lütfen üslubunuza dikkat edin, konu nezih bir ortam olsun. Kavgaya ya da aşağılayıcı konuşmaya gerek yok.
 
Lütfen üslubunuza dikkat edin, konu nezih bir ortam olsun. Kavgaya ya da aşağılayıcı konuşmaya gerek yok.
Tamam hocamda kendisi küçük düşürücü muhabbet başlatıyor ne ekledin ne farkı var vb vb diye yorum kasma bile derim şahsen ne ekledin ne demek ya gözünda 30 numara miyop olsa gectim onu gozun bokla kaplı olsa dokunarak anlar insan okumasıda mı yok adamın
 
Tamam hocamda kendisi küçük düşürücü muhabbet başlatıyor ne ekledin ne farkı var vb vb diye yorum kasma bile derim şahsen ne ekledin ne demek ya gözünda 30 numara miyop olsa gectim onu gozun bokla kaplı olsa dokunarak anlar insan okumasıda mı yok adamın
:D chatgpt yapmış öylemi ? sen böyle devam et
 

  Şuanda konuyu görüntüleyen kullanıcılar


Üst Alt