File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
modules/auxiliary/scanner/http Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ class Metasploit4 < Msf::Auxiliary
14
14
15
15
def initialize ( info = { } )
16
16
super ( update_info ( info ,
17
- 'Name' => 'Web-Dorado ECommerce WD for Joomla! search_category_id SQL injection Scanner' ,
17
+ 'Name' => 'Web-Dorado ECommerce WD for Joomla! search_category_id SQL Injection Scanner' ,
18
18
'Description' => %q{
19
19
This module will scan for hosts vulnerable to an unauthenticated SQL injection within the
20
20
advanced search feature of the Web-Dorado ECommerce WD 1.2.5 and likely prior.
@@ -64,14 +64,14 @@ def run_host(ip)
64
64
} )
65
65
66
66
unless res && res . body
67
- vprint_error ( "#{ peer } - Server didn't respond in an expected way" )
67
+ vprint_error ( "#{ peer } - Server did not respond in an expected way" )
68
68
return
69
69
end
70
70
71
71
result = res . body =~ /#{ left_marker } #{ flag } #{ right_marker } /
72
72
73
73
if result
74
- print_good ( "#{ peer } - Vulnerable to CVE-2015-2562 (search_category parameter SQL injection)" )
74
+ print_good ( "#{ peer } - Vulnerable to CVE-2015-2562 (search_category_id parameter SQL injection)" )
75
75
report_vuln ( {
76
76
:host => rhost ,
77
77
:port => rport ,
@@ -80,5 +80,7 @@ def run_host(ip)
80
80
:refs => self . references . select { |ref | ref . ctx_val == "2015-2562" }
81
81
} )
82
82
end
83
+
83
84
end
85
+
84
86
end
You can’t perform that action at this time.
0 commit comments