Created
October 3, 2016 14:49
-
-
Save staaldraad/8473da7f2dfed28b2216b15ca6ebad11 to your computer and use it in GitHub Desktop.
A reverse shell listener in powershell
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$socket = new-object System.Net.Sockets.TcpListener('127.0.0.1', 413); | |
if($socket -eq $null){ | |
exit 1 | |
} | |
$socket.start() | |
$client = $socket.AcceptTcpClient() | |
write-output "[*] Connection!" | |
$stream = $client.GetStream(); | |
$writer = new-object System.IO.StreamWriter($stream); | |
$buffer = new-object System.Byte[] 2048; | |
$encoding = new-object System.Text.AsciiEncoding; | |
do | |
{ | |
$cmd = read-host | |
$writer.WriteLine($cmd) | |
$writer.Flush(); | |
if($cmd -eq "exit"){ | |
break | |
} | |
$read = $null; | |
while($stream.DataAvailable -or $read -eq $null) { | |
$read = $stream.Read($buffer, 0, 2048) | |
$out = $encoding.GetString($buffer, 0, $read) | |
Write-Output $out | |
} | |
} While ($client.Connected -eq $true) | |
$socket.Stop() | |
$client.close(); | |
$stream.Dispose() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment