-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add new filters for flow and intrusion (#79)
* Add new filters for flow and intrusion * Update intrusion_threat_intelligence.conf.erb * Update netflow_threat_intelligence.conf.erb * Update config.rb
- Loading branch information
Showing
3 changed files
with
47 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
resources/templates/default/intrusion_threat_intelligence.conf.erb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
filter { | ||
threatintelligence { | ||
memcached_servers => <%=@memcached_servers%> | ||
key_mapping => { | ||
"src" => "src_is_malicious" | ||
"dst" => "dst_is_malicious" | ||
"public_ip" => "src_is_malicious" | ||
"sha256" => "sha256_is_malicious" | ||
"file_uri" => "file_uri_is_malicious" | ||
"file_hostname" => "file_hostname_is_malicious" | ||
} | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
resources/templates/default/netflow_threat_intelligence.conf.erb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
filter { | ||
threatintelligence { | ||
memcached_servers => <%=@memcached_servers%> | ||
key_mapping => { | ||
"lan_ip" => "lan_ip_is_malicious" | ||
"wan_ip" => "wan_ip_is_malicious" | ||
"public_ip" => "public_ip_is_malicious" | ||
} | ||
} | ||
} |