Skip to content

Commit 4b2ae82

Browse files
authored
Merge pull request rapid7#20485 from adfoster-r7/fix-ldap-schannel-supercall
Fix ldap schannel superclass method call
2 parents 99dd2a0 + f3dd030 commit 4b2ae82

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/msf/core/auxiliary/report_summary.rb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,14 +78,16 @@ def create_credential_login(credential_data)
7878
end
7979

8080
def report_successful_login(public:, private:)
81-
return super unless framework.features.enabled?(Msf::FeatureManager::SHOW_SUCCESSFUL_LOGINS) && datastore['ShowSuccessfulLogins'] && @report
81+
return unless framework.features.enabled?(Msf::FeatureManager::SHOW_SUCCESSFUL_LOGINS) && datastore['ShowSuccessfulLogins'] && @report
8282

8383
@report[rhost] ||= {}
8484
@report[rhost][:successful_logins] ||= []
8585
@report[rhost][:successful_logins] << {
8686
public: public,
8787
private_data: private
8888
}
89+
90+
nil
8991
end
9092

9193
# Creates a credential and adds to to the DB if one is present, then calls create_credential_login to

0 commit comments

Comments
 (0)