Land #18678, add LDAP capture capabilities

This commit is contained in:
adfoster-r7
2024-02-15 22:11:04 +00:00
committed by GitHub
9 changed files with 1092 additions and 70 deletions
+6
View File
@@ -198,6 +198,7 @@ module Msf
'DRDA' => 'auxiliary/server/capture/drda',
'FTP' => 'auxiliary/server/capture/ftp',
'IMAP' => 'auxiliary/server/capture/imap',
'LDAP' => 'auxiliary/server/capture/ldap',
'MSSQL' => 'auxiliary/server/capture/mssql',
'MySQL' => 'auxiliary/server/capture/mysql',
'POP3' => 'auxiliary/server/capture/pop3',
@@ -578,6 +579,11 @@ module Msf
datastore['CHALLENGE'] = config[:ntlm_challenge]
end
def configure_ldap(datastore, config)
datastore['DOMAIN'] = config[:ntlm_domain]
datastore['CHALLENGE'] = config[:ntlm_challenge]
end
def configure_mssql(datastore, config)
datastore['DOMAIN_NAME'] = config[:ntlm_domain]
datastore['CHALLENGE'] = config[:ntlm_challenge]