File tree Expand file tree Collapse file tree 1 file changed +10
-7
lines changed
modules/auxiliary/scanner/http Expand file tree Collapse file tree 1 file changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -19,8 +19,11 @@ def initialize(info={})
19
19
[
20
20
'Matt "hostess" Andreko <mandreko[at]accuvant.com>'
21
21
] ,
22
- ) )
23
-
22
+ 'References' => [
23
+ [ 'OSVDB' , '' ] ,
24
+ [ 'URL' , 'http://www.mattandreko.com/2013/06/canon-y-u-no-security.html' ]
25
+ ] ,
26
+ 'DisclosureDate' => 'June 15 2013' ) )
24
27
register_options (
25
28
[
26
29
Opt ::RPORT ( 80 ) ,
@@ -29,10 +32,10 @@ def initialize(info={})
29
32
30
33
def get_network_settings
31
34
begin
32
- res = send_request_raw ( {
35
+ res = send_request_cgi ( {
33
36
'method' => 'GET' ,
34
- 'uri' => " /English/pages_MacUS/lan_set_content.html" ,
35
- } , 25 )
37
+ 'uri' => ' /English/pages_MacUS/lan_set_content.html' ,
38
+ } )
36
39
rescue
37
40
print_error ( "#{ rhost } :#{ rport } Could not connect." )
38
41
return
@@ -75,10 +78,10 @@ def get_network_settings
75
78
76
79
def get_wireless_key
77
80
begin
78
- res = send_request_raw ( {
81
+ res = send_request_cgi ( {
79
82
'method' => 'GET' ,
80
83
'uri' => "/English/pages_MacUS/wls_set_content.html" ,
81
- } , 25 )
84
+ } )
82
85
rescue
83
86
print_error ( "#{ ip } :#{ rport } Could not connect." )
84
87
return
You can’t perform that action at this time.
0 commit comments