cihazın uyumlu değil demekkiCihaz Uyuşmazlığı
fazladan internet vs çekmiyor sadece mac adresini değiştiriyorValorant için dener paylaşırdım fakat internetim kötü .d
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.cihazın uyumlu değil demekki
fazladan internet vs çekmiyor sadece mac adresini değiştiriyor
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öremiyorumyok 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()
Öyle mi olmuşee ne ekledin ? bi değişiklik göremiyorum
kral ciddi soruyorum ne ekledin ?Öyle mi olmuş
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ınkral ciddi soruyorum ne ekledin ?
Lütfen üslubunuza dikkat edin, konu nezih bir ortam olsun. Kavgaya ya da aşağılayıcı konuşmaya gerek yok.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
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ınLütfen üslubunuza dikkat edin, konu nezih bir ortam olsun. Kavgaya ya da aşağılayıcı konuşmaya gerek yok.
chatgpt yapmış öylemi ? sen böyle devam etTamam 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