From d0eb7870fe1958b6017297f71ca9f94132d7403d Mon Sep 17 00:00:00 2001 From: Maxwell Date: Wed, 10 Sep 2025 14:50:38 +1000 Subject: [PATCH] Add chaos --- chaos.pyw | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 chaos.pyw diff --git a/chaos.pyw b/chaos.pyw new file mode 100644 index 0000000..5c8f1ad --- /dev/null +++ b/chaos.pyw @@ -0,0 +1,15 @@ +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 :)")