16 lines
914 B
Python
16 lines
914 B
Python
import subprocess
|
|
import random
|
|
import platform
|
|
import tkinter.messagebox
|
|
|
|
programs = ["open msedge https://maxwellj.xyz", "notepad.exe", "runas /user:Administrator cmd", "msg %username% 'it seems you have been dingused lololololololololol'", "regedit.exe", "START CMD /C 'ECHO you have been hacked by the L33T H@X0Rs!!!!1!!1! && PAUSE'"]
|
|
|
|
if platform.system() == "Windows":
|
|
tkinter.messagebox.showinfo("Warning", "Hi there. This app is going to run a bunch of applications on your computer, all at once. If you don't want to do this, open task manager (Control + Shift + Esc), find python and end task. Otherwise, feel free to dismiss the dialog box normally.")
|
|
while True:
|
|
runner = ["cmd", "/c"]
|
|
runner.append(programs[random.randint(0,len(programs) - 1)])
|
|
subprocess.run(runner)
|
|
else:
|
|
tkinter.messagebox.showinfo(":)", "You're safe, you're using a good OS. Thanks :)")
|