Skip to content

Commit d592d89

Browse files
Merge branch 'release/3.7.5'
2 parents 662fa81 + 83d476e commit d592d89

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## [3.7.4](https://github.com/TheHive-Project/Cortex-Analyzers/tree/3.7.4) (2026-01-22)
4+
5+
[Full Changelog](https://github.com/TheHive-Project/Cortex-Analyzers/compare/3.7.3...3.7.4)
6+
7+
**Merged pull requests:**
8+
9+
- Slack - Fix lookup performance issues [\#1415](https://github.com/TheHive-Project/Cortex-Analyzers/pull/1415) ([nusantara-self](https://github.com/nusantara-self))
10+
311
## [3.7.3](https://github.com/TheHive-Project/Cortex-Analyzers/tree/3.7.3) (2026-01-21)
412

513
[Full Changelog](https://github.com/TheHive-Project/Cortex-Analyzers/compare/3.7.2...3.7.3)

analyzers/CrowdstrikeFalcon/CrowdstrikeFalcon_ThreatIntel.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ def _build_filter(self, data_type, observable):
3333
if data_type == 'hash':
3434
hash_type = self._detect_hash_type(observable)
3535
if hash_type:
36-
return f"type:'{hash_type}'+indicator:'{observable.upper()}'"
36+
return f"type:'{hash_type}'+indicator:'{observable.lower()}'"
3737
else:
3838
# Search across all hash types if we can't determine
39-
return f"indicator:'{observable.upper()}'"
39+
return f"indicator:'{observable.lower()}'"
4040
elif data_type == 'domain':
4141
return f"type:'domain'+indicator:'{observable}'"
4242
elif data_type == 'ip':

0 commit comments

Comments
 (0)