Skip to content

Commit 5ed030f

Browse files
committed
Land rapid7#7529, nil.downcase fix for tomcat_mgr_deploy
Don't think it was ever needed, since the password is case-sensitive. Fixed a minor merge conflict where PASSWORD became HttpPassword.
2 parents dae1f26 + 2f8d3c3 commit 5ed030f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/exploits/multi/http/tomcat_mgr_deploy.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ def report_tomcat_credential
312312
origin_type: :service,
313313
module_fullname: self.fullname,
314314
private_type: :password,
315-
private_data: datastore['HttpPassword'].downcase,
315+
private_data: datastore['HttpPassword'],
316316
username: datastore['HttpUsername']
317317
}
318318

0 commit comments

Comments
 (0)