Fix pgrep typo

pull/11/head
IMcPwn 2015-11-22 13:16:48 -05:00
parent bc7716f187
commit 8f028e1ba5
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ function start {
function stop {
rm -f /tmp/meterpreter-sl.lock
if pgrep -f meterpreter-sl-exec.py > /dev/null; then kill $(pgrep -f meterpreter-sl-exec.py); fi
if pgrep -f stageless_meterpreter.py > /dev/null; then kill $(pgrep -f stageless_meterpreter.py); fi
if pgrep -f stageless_meterpreter > /dev/null; then kill $(pgrep -f stageless_meterpreter); fi
echo "Stageless Meterpreter stopped"
}