Skip to content

Commit 15a59b0

Browse files
Merge branch 'release/3.5.24'
2 parents 6489a54 + 9b9770d commit 15a59b0

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

CHANGELOG.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,16 @@
66

77
**Closed issues:**
88

9-
- \[FR\] - Responder Mailer\_1.0 - Add Case number of the subject of the sent email [\#1370](https://github.com/TheHive-Project/Cortex-Analyzers/issues/1370)
109
- \[Bug\] GreyNoise - new SDK breaks analyzer [\#1368](https://github.com/TheHive-Project/Cortex-Analyzers/issues/1368)
11-
- \[Bug\] Cortex Mailer Responder does not add Date header \(per RFC5322\) [\#1222](https://github.com/TheHive-Project/Cortex-Analyzers/issues/1222)
1210
- Can't run mailer.py responder: "doesn't have image" [\#953](https://github.com/TheHive-Project/Cortex-Analyzers/issues/953)
1311
- \[Bug\] Mailer Responder is checking for recipient tags starting with "mail:" [\#847](https://github.com/TheHive-Project/Cortex-Analyzers/issues/847)
12+
- \[FR\] - Responder Mailer\_1.0 - Add Case number of the subject of the sent email [\#1370](https://github.com/TheHive-Project/Cortex-Analyzers/issues/1370)
13+
- \[Bug\] Cortex Mailer Responder does not add Date header \(per RFC5322\) [\#1222](https://github.com/TheHive-Project/Cortex-Analyzers/issues/1222)
14+
15+
**Merged pull requests:**
16+
17+
- Mailer - Tiny fixes & improvements [\#1372](https://github.com/TheHive-Project/Cortex-Analyzers/pull/1372) ([nusantara-self](https://github.com/nusantara-self))
18+
- AbuseIPDB 1.1 - Contextual improvements / Analyzer template [\#1371](https://github.com/TheHive-Project/Cortex-Analyzers/pull/1371) ([nusantara-self](https://github.com/nusantara-self))
1419

1520
## [3.5.22](https://github.com/TheHive-Project/Cortex-Analyzers/tree/3.5.22) (2025-08-01)
1621

analyzers/Elasticsearch/elk.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -145,22 +145,22 @@ def run(self):
145145
api_key = (key),
146146
ca_certs=self.cert,
147147
verify_certs=self.verify,
148-
timeout=30
148+
request_timeout=30
149149
)
150150
elif user:
151151
es = Elasticsearch(
152152
endpoint,
153153
http_auth = (user,password),
154154
ca_certs=self.cert,
155155
verify_certs=self.verify,
156-
timeout=30
156+
request_timeout=30
157157
)
158158
else:
159159
es = Elasticsearch(
160160
endpoint,
161161
ca_certs=self.cert,
162162
verify_certs=self.verify,
163-
timeout=30
163+
request_timeout=30
164164
)
165165

166166
info = {}

analyzers/Elasticsearch/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
elasticsearch
1+
elasticsearch>=8.0.0
22
cortexutils
33
pytz
44
requests

0 commit comments

Comments
 (0)