Skip to content

Commit 1f98edd

Browse files
committed
Adding new macro & lookup exceptions
1 parent b6b7fcd commit 1f98edd

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

contentctl/objects/lookup.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,13 @@
6565
# Special case for the Detection "Exploit Public Facing Application via Apache Commons Text"
6666
LOOKUPS_TO_IGNORE.add("=")
6767
LOOKUPS_TO_IGNORE.add("other_lookups")
68+
LOOKUPS_TO_IGNORE.add(
69+
"asn_lookup_by_cidr"
70+
) # Provided by SA-ThreatIntelligence, part of Enterprise Security
71+
72+
LOOKUPS_TO_IGNORE.add(
73+
"mitre_attack_lookup"
74+
) # KVStore provided by SA-ThreatIntelligence, part of Enterprise Security
6875

6976

7077
class Lookup_Type(StrEnum):

contentctl/objects/macro.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
) # SA-ThreatIntelligence, part of Enterprise Security
2727
MACROS_TO_IGNORE.add("cim_corporate_web_domain_search") # Part of CIM/Splunk_SA_CIM
2828
# MACROS_TO_IGNORE.add("prohibited_processes")
29+
MACROS_TO_IGNORE.add("globedistance") # Part of SA-Utils, part of Enterprise Security
2930

3031

3132
class Macro(SecurityContentObject):

0 commit comments

Comments
 (0)