Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
add RunProgramsOnAccessControlServer hotkey..
.. but a game-breaking bug makes it (nearly?) unusable at the moment. trying to run `run Log_UnDeleter` will make it delete everything in usr instead of starting Log_UnDeleter !
  • Loading branch information
divinity76 committed Feb 27, 2019
1 parent 60e39fa commit b86fd82
Showing 1 changed file with 60 additions and 2 deletions.
62 changes: 60 additions & 2 deletions Onlink.au3
Expand Up @@ -12,7 +12,7 @@

HotKeySet("{PGUP}","WriteTransferMoney");
HotKeySet("{PGDN}","ParseBankLogs");

HotKeySet("{END}","RunProgramsOnAccessControlServer"); i'm just making up these hotkeys as i need em, there's no logic to it.
Func Paste()
Sleep(2*1000);
Send(ClipGet());
Expand Down Expand Up @@ -139,8 +139,66 @@ Func ParseBankLogs()
Beep();
EndFunc

Func RunProgramsOnAccessControlServer()
; Denial is not included.
Local $args=[ _
"run File_Copier", _
"run Proxy_Killer", _
"run Firewall_Bypass", _
"run Password_Breaker", _
"run Decypher", _
"run B.Monitor_Killer", _
"run File_Deleter", _
"run Log_Deleter", _
"run Sentry_Bypass", _
"run Encryption_Bypass", _
"run Proxy_Bypass", _
"run Gateway_Nuke", _
"run Motion_Sensor", _
"run Defrag", _
"run Decrypter", _
"run Encrypter", _
"run PC_AdminMenuInject", _
"run PC_ConsoleEnable", _
"run PC_LoginEnable", _
"run PC_MainMenuInject", _
"run PC_md2Crack", _
"run PC_md4Crack", _
"run PC_md5Crack", _
"run PC_SHA-512Crack", _
"run B.Monitor_Bypass", _
"run Compressor", _
"run Decompressor", _
"run Encrypter", _
"run LAN_Agent", _
"run Log_UnDeleter", _
"run Voice_Analyser", _
"run IP_Lookup", _
"run IP_Probe", _
"run LAN_Probe", _
"run LAN_Scan", _
"run LAN_Spoof", _
"run LAN_Force", _
"run Trace_Tracker", _
"run Monitor_Bypass", _
"run LAN_Spike", _
"run VDPIN_Cracker", _
"run Encryption_Killer", _
"run Firewall_Killer", _
"run Sentry_Killer", _
"run Log_Modifier" _
];
Local $iMax = UBound($args)
Send("dir{ENTER}");
Sleep(200);
For $i = 0 to $iMax - 1;
Send($args[$i] & "{ENTER}");
sleep(60);
Next
EndFunc


init();
While 1
Sleep(100);
WEnd

0 comments on commit b86fd82

Please sign in to comment.