Skip to content

Commit c9e13d6

Browse files
Merge branch 'release/3.6.2'
2 parents 1e20808 + 8b362b2 commit c9e13d6

File tree

7 files changed

+999
-206
lines changed

7 files changed

+999
-206
lines changed

CHANGELOG.md

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

3+
## [3.6.1](https://github.com/TheHive-Project/Cortex-Analyzers/tree/3.6.1) (2025-10-07)
4+
5+
[Full Changelog](https://github.com/TheHive-Project/Cortex-Analyzers/compare/3.6.0...3.6.1)
6+
7+
**Merged pull requests:**
8+
9+
- Slack responder - Improvements [\#1387](https://github.com/TheHive-Project/Cortex-Analyzers/pull/1387) ([nusantara-self](https://github.com/nusantara-self))
10+
- Velociraptor - support for b64 api configuration for SaaS deployments [\#1386](https://github.com/TheHive-Project/Cortex-Analyzers/pull/1386) ([nusantara-self](https://github.com/nusantara-self))
11+
312
## [3.6.0](https://github.com/TheHive-Project/Cortex-Analyzers/tree/3.6.0) (2025-10-06)
413

514
[Full Changelog](https://github.com/TheHive-Project/Cortex-Analyzers/compare/3.5.26...3.6.0)
Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
{
2+
"name": "ClusterHawk",
3+
"version": "1.0",
4+
"author": "Marvin Uku, Chawkr",
5+
"license": "AGPL-V3",
6+
"url": "",
7+
"description": "ClusterHawk prediction analyzer for IP address threat intelligence using pre-trained models",
8+
"dataTypeList": ["ip"],
9+
"baseConfig": "ClusterHawk",
10+
"config":{
11+
"max_tlp":3,
12+
"check_tlp":true
13+
},
14+
"configurationItems": [
15+
{
16+
"name": "api_key",
17+
"type": "string",
18+
"multi": false,
19+
"required": true,
20+
"description": "ClusterHawk API key"
21+
},
22+
{
23+
"name": "base_url",
24+
"type": "string",
25+
"multi": false,
26+
"required": false,
27+
"defaultValue": "https://clusterhawk.chawkr.com",
28+
"description": "ClusterHawk API base URL"
29+
},
30+
{
31+
"name": "model_name",
32+
"type": "string",
33+
"multi": false,
34+
"required": true,
35+
"description": "Name of the trained model to use for prediction"
36+
},
37+
{
38+
"name": "check_quota",
39+
"type": "boolean",
40+
"multi": false,
41+
"required": false,
42+
"defaultValue": true,
43+
"description": "Check concurrent job quota before submitting prediction"
44+
},
45+
{
46+
"name": "timeout",
47+
"type": "number",
48+
"multi": false,
49+
"required": false,
50+
"defaultValue": 30,
51+
"description": "Maximum time to wait for job completion (minutes)"
52+
},
53+
{
54+
"name": "poll_interval",
55+
"type": "number",
56+
"multi": false,
57+
"required": false,
58+
"defaultValue": 10,
59+
"description": "Interval between status checks (seconds)"
60+
},
61+
{
62+
"name": "job_name",
63+
"type": "string",
64+
"multi": false,
65+
"required": false,
66+
"defaultValue": "Cortex Analysis",
67+
"description": "Custom name for prediction jobs"
68+
}
69+
],
70+
"command": "python3 ClusterHawk/ClusterHawk.py",
71+
"registration_required": true,
72+
"subscription_required": true,
73+
"free_subscription": false,
74+
"service_homepage": "https://clusterhawk.chawkr.com"
75+
}

0 commit comments

Comments
 (0)