We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0a531b4 + 541e8d6 commit cb381adCopy full SHA for cb381ad
modules/auxiliary/scanner/http/wp_ultimate_member_sorting_sqli.rb
@@ -62,7 +62,7 @@ def get_nonce
62
'uri' => normalize_uri(target_uri.path, uri)
63
})
64
65
- next unless res&.code == 200
+ next unless res&.code && res.code <= 500
66
67
page = res.get_html_document
68
@@ -110,7 +110,7 @@ def get_directory_id(nonce)
110
fail_with(Failure::NotFound, "Could not find a valid directory id within the range #{min_range} to #{max_range}")
111
end
112
113
- def run_host(_ip)
+ def run
114
# next line included for automatic inclusion into vulnerable plugins list
115
# check_plugin_version_from_readme('ultimate-member', '2.8.3')
116
print_status("Performing SQL injection for CVE-2024-1071 via the 'sorting' parameter...")
0 commit comments