Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions contentctl/objects/lookup.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,13 @@
# Special case for the Detection "Exploit Public Facing Application via Apache Commons Text"
LOOKUPS_TO_IGNORE.add("=")
LOOKUPS_TO_IGNORE.add("other_lookups")
LOOKUPS_TO_IGNORE.add(
"asn_lookup_by_cidr"
) # Provided by SA-ThreatIntelligence, part of Enterprise Security

LOOKUPS_TO_IGNORE.add(
"mitre_attack_lookup"
) # KVStore provided by SA-ThreatIntelligence, part of Enterprise Security


class Lookup_Type(StrEnum):
Expand Down
1 change: 1 addition & 0 deletions contentctl/objects/macro.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
) # SA-ThreatIntelligence, part of Enterprise Security
MACROS_TO_IGNORE.add("cim_corporate_web_domain_search") # Part of CIM/Splunk_SA_CIM
# MACROS_TO_IGNORE.add("prohibited_processes")
MACROS_TO_IGNORE.add("globedistance") # Part of SA-Utils, part of Enterprise Security


class Macro(SecurityContentObject):
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.poetry]
name = "contentctl"

version = "5.5.4"
version = "5.5.5"

description = "Splunk Content Control Tool"
authors = ["STRT <research@splunk.com>"]
Expand Down
Loading