Skip to content

Commit

Permalink
Land rapid7#7529, nil.downcase fix for tomcat_mgr_deploy
Browse files Browse the repository at this point in the history
Don't think it was ever needed, since the password is case-sensitive.

Fixed a minor merge conflict where PASSWORD became HttpPassword.
  • Loading branch information
wvu committed Nov 3, 2016
2 parents dae1f26 + 2f8d3c3 commit 5ed030f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/exploits/multi/http/tomcat_mgr_deploy.rb
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ def report_tomcat_credential
origin_type: :service,
module_fullname: self.fullname,
private_type: :password,
private_data: datastore['HttpPassword'].downcase,
private_data: datastore['HttpPassword'],
username: datastore['HttpUsername']
}

Expand Down

0 comments on commit 5ed030f

Please sign in to comment.