Skip to content

Commit f7aaad1

Browse files
committed
Delete some extraneous commas
1 parent dbc77a2 commit f7aaad1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

modules/exploits/multi/http/manageengine_auth_upload.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def initialize(info = {})
2828
},
2929
'Author' =>
3030
[
31-
'Pedro Ribeiro <pedrib[at]gmail.com>', # Vulnerability Discovery and Metasploit module
31+
'Pedro Ribeiro <pedrib[at]gmail.com>' # Vulnerability Discovery and Metasploit module
3232
],
3333
'License' => MSF_LICENSE,
3434
'References' =>
@@ -192,7 +192,7 @@ def authenticate_it360(port, path, username, password)
192192
def get_it360_cookie_name
193193
res = send_request_cgi({
194194
'method' => 'GET',
195-
'uri' => normalize_uri("/"),
195+
'uri' => normalize_uri("/")
196196
})
197197
cookie = res.get_cookies
198198
if cookie =~ /IAMAGENTTICKET([A-Z]{0,4})/
@@ -214,7 +214,7 @@ def login_it360
214214
# get the correct path, host and port
215215
res = send_request_cgi({
216216
'method' => 'GET',
217-
'uri' => normalize_uri('/'),
217+
'uri' => normalize_uri('/')
218218
})
219219

220220
if res && res.redirect?

0 commit comments

Comments
 (0)