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

Added valgrind as a GTFOBin

This commit is contained in:
John Hammond 2020-05-23 23:33:33 -04:00
parent db37afa5ce
commit 3edac48c55

View File

@ -867,12 +867,26 @@
//-------------------------------------------------------------------
"valgrind": [
{
"type": "shell",
"payload": "{command}",
"args": ["-q", "{shell}"]
}
],
//-------------------------------------------------------------------
"vi": [
{
"type": "shell",
"payload": "{command}",
"args": ["-c", "':!exec {shell} -p'", "-c", "':q'"],
// Include an extra newline to be sure to exit vim itself.
"exit": "exit\n\n"
}
],
//-------------------------------------------------------------------
"vim": [