Skip to content

Commit 06d84c1

Browse files
authored
Merge pull request #415 from splunk/macro_additions
Adding new macro & lookup exceptions
2 parents b6b7fcd + 47bb4b7 commit 06d84c1

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
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):

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tool.poetry]
22
name = "contentctl"
33

4-
version = "5.5.4"
4+
version = "5.5.5"
55

66
description = "Splunk Content Control Tool"
77
authors = ["STRT <[email protected]>"]

0 commit comments

Comments
 (0)