Skip to content

Commit f3dd030

Browse files
committed
Fix ldap schannel supercall
1 parent be3d777 commit f3dd030

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)