Skip to content

Commit

Permalink
Global directory structure (#22)
Browse files Browse the repository at this point in the history
Implement a global directory structure to ensure uniform paths are maintained consistently throughout the project
  • Loading branch information
4quarks committed Feb 27, 2024
1 parent 11743d6 commit 7aca480
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions files/configuration/pdnssoccli/pdnssoccli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ misp_servers:
delta: False

correlation:
input_dir: ./input_dir/ # use this if no files are defined from commmand line
output_dir: ./output_dir/
archive_dir: ./archive/ # use this as input for looking back
malicious_domains_file: ./misp_domains.txt
malicious_ips_file: ./misp_ips.txt
last_correlation_pointer_file: ./correlation.last
last_retro_pointer_file: ./retro.last
input_dir: /var/dnscollector/queries # use this if no files are defined from commmand line
output_dir: /var/dnscollector/alerts
archive_dir: /var/dnscollector/archive # use this as input for looking back
malicious_domains_file: /var/dnscollector/misp_domains.txt
malicious_ips_file: /var/dnscollector/misp_ips.txt
last_correlation_pointer_file: /var/dnscollector/correlation.last
last_retro_pointer_file: /var/dnscollector/retro.last

schedules:
fetch_iocs:
Expand All @@ -42,7 +42,7 @@ alerting:
summary_to: "pdnssoc-dev@cern.ch"
server: "localhost"
port: 25
template: ./alert_email_template.html
template: /etc/pdnssoccli/alert_email.html
mappings:
- client_id: client_1
contact: client_1_sec_team@domain.tld
contact: client_1_sec_team@domain.tld

0 comments on commit 7aca480

Please sign in to comment.