1
0
mirror of https://github.com/calebstewart/pwncat.git synced 2024-11-23 17:15:38 +01:00

Added some GTFOBins

This commit is contained in:
John Hammond 2020-05-10 19:55:47 -04:00
parent a2195d6575
commit 27fe9288c4
2 changed files with 14 additions and 1 deletions

View File

@ -1,7 +1,7 @@
# pwncat
pwncat is a raw bind and reverse shell handler. It streamlines common red team
operations and all staging code from your own attacker machine, not the target.
operations and all staging code is from your own attacker machine, not the target.
After receiving a connection, **pwncat** will setup some
common configurations when working with remote shells.

View File

@ -150,5 +150,18 @@
"payload": "{path} -p -c \"echo -n {data} | base64 -d > {lfile}\""
},
"command": "{path} -p -c {command}"
},
{
"name": "vim",
"shell": {
"script": "{command}",
"suid": ["-p"]
},
"read_file": "{path} -p -c \"cat {lfile}\"",
"write_file": {
"type": "base64",
"payload": "{path} -p -c \"echo -n {data} | base64 -d > {lfile}\""
},
"command": "{path} -p -c {command}"
}
]