Additions from JKCTech

https://github.com/jkctech/Flipper-Zero-Scripts
This commit is contained in:
UberGuidoZ
2022-09-04 00:47:09 -07:00
parent 2706f7c279
commit e211eb1aa9
22 changed files with 184 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
REM Title: RickRoll
REM Author: Jeffrey Koopman | JKCTech
REM Description: RickRoll in Windows PowerShell
REM Target: Windows
REM
DEFAULTDELAY 50
GUI r
DELAY 500
STRING powershell.exe
ENTER
DELAY 1000
STRING $request = [System.Net.HttpWebRequest]::Create("http://ascii.live/rick");$receiveStream=$request.GetResponse().GetResponseStream();$readStream=[System.IO.StreamReader]::new($receiveStream);[console]::TreatControlCAsInput=$true;$initialForegroundColor=[Console]::ForegroundColor;while($line=$readStream.ReadLine()){if([Console]::KeyAvailable){$key=[System.Console]::ReadKey($true);if(($key.modifiers -band [ConsoleModifiers]"control") -and ($key.key -eq "C")){break;}}[Console]::WriteLine($line);}
ENTER
GUI UPARROW