diff --git a/data/capture_config.yaml b/data/capture_config.yaml index 11ce4dae1a..c5702d1020 100644 --- a/data/capture_config.yaml +++ b/data/capture_config.yaml @@ -1,8 +1,12 @@ spoof_regex: .* ntlm_challenge: "1122334455667788" ntlm_domain: anonymous +http_basic: no +ssl_cert: null +logfile: null +hashdir: null services: - DRDA: off + DRDA: on FTP: on HTTP: on HTTPS: on @@ -11,7 +15,7 @@ services: MySQL: on POP3: on Postgres: on - PrintJob: off + PrintJob: on SIP: on SMB: on SMTP: on diff --git a/plugins/capture.rb b/plugins/capture.rb index 452eb9ebe4..8608e5d119 100644 --- a/plugins/capture.rb +++ b/plugins/capture.rb @@ -410,7 +410,12 @@ class Plugin::HashCapture < Msf::Plugin options = { :ntlm_challenge => yamlconf['ntlm_challenge'], :ntlm_domain => yamlconf['ntlm_domain'], - :services => yamlconf['services'] + :services => yamlconf['services'], + :spoof_regex => yamlconf['spoof_regex'], + :http_basic => yamlconf['http_basic'], + :ssl_cert => yamlconf['ssl_cert'], + :logfile => yamlconf['logfile'], + :hashdir => yamlconf['hashdir'] } end end