Delete some extraneous commas
parent
dbc77a2857
commit
f7aaad1cf1
|
@ -28,7 +28,7 @@ class Metasploit3 < Msf::Exploit::Remote
|
||||||
},
|
},
|
||||||
'Author' =>
|
'Author' =>
|
||||||
[
|
[
|
||||||
'Pedro Ribeiro <pedrib[at]gmail.com>', # Vulnerability Discovery and Metasploit module
|
'Pedro Ribeiro <pedrib[at]gmail.com>' # Vulnerability Discovery and Metasploit module
|
||||||
],
|
],
|
||||||
'License' => MSF_LICENSE,
|
'License' => MSF_LICENSE,
|
||||||
'References' =>
|
'References' =>
|
||||||
|
@ -192,7 +192,7 @@ class Metasploit3 < Msf::Exploit::Remote
|
||||||
def get_it360_cookie_name
|
def get_it360_cookie_name
|
||||||
res = send_request_cgi({
|
res = send_request_cgi({
|
||||||
'method' => 'GET',
|
'method' => 'GET',
|
||||||
'uri' => normalize_uri("/"),
|
'uri' => normalize_uri("/")
|
||||||
})
|
})
|
||||||
cookie = res.get_cookies
|
cookie = res.get_cookies
|
||||||
if cookie =~ /IAMAGENTTICKET([A-Z]{0,4})/
|
if cookie =~ /IAMAGENTTICKET([A-Z]{0,4})/
|
||||||
|
@ -214,7 +214,7 @@ class Metasploit3 < Msf::Exploit::Remote
|
||||||
# get the correct path, host and port
|
# get the correct path, host and port
|
||||||
res = send_request_cgi({
|
res = send_request_cgi({
|
||||||
'method' => 'GET',
|
'method' => 'GET',
|
||||||
'uri' => normalize_uri('/'),
|
'uri' => normalize_uri('/')
|
||||||
})
|
})
|
||||||
|
|
||||||
if res && res.redirect?
|
if res && res.redirect?
|
||||||
|
|
Loading…
Reference in New Issue