mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-10 19:22:54 +01:00
Compare commits
9 Commits
idstools-r
...
TOoSmOotH-
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
94694d394e | ||
|
|
03dd746601 | ||
|
|
eec3373ae7 | ||
|
|
db45ce07ed | ||
|
|
ba49765312 | ||
|
|
80411ab6cf | ||
|
|
411f28a049 | ||
|
|
2dd49f6d9b | ||
|
|
c4a70b540e |
@@ -2653,25 +2653,22 @@ soc:
|
|||||||
thresholdColorRatioMax: 1
|
thresholdColorRatioMax: 1
|
||||||
availableModels:
|
availableModels:
|
||||||
- id: sonnet-4
|
- id: sonnet-4
|
||||||
displayName: Claude Sonnet 4
|
displayName: Claude Sonnet 4 ($$$)
|
||||||
|
origin: USA
|
||||||
contextLimitSmall: 200000
|
contextLimitSmall: 200000
|
||||||
contextLimitLarge: 1000000
|
contextLimitLarge: 1000000
|
||||||
lowBalanceColorAlert: 500000
|
lowBalanceColorAlert: 500000
|
||||||
enabled: true
|
enabled: true
|
||||||
- id: sonnet-4.5
|
- id: sonnet-4.5
|
||||||
displayName: Claude Sonnet 4.5
|
displayName: Claude Sonnet 4.5 ($$$)
|
||||||
|
origin: USA
|
||||||
contextLimitSmall: 200000
|
contextLimitSmall: 200000
|
||||||
contextLimitLarge: 1000000
|
contextLimitLarge: 1000000
|
||||||
lowBalanceColorAlert: 500000
|
lowBalanceColorAlert: 500000
|
||||||
enabled: true
|
enabled: true
|
||||||
- id: gptoss-120b
|
|
||||||
displayName: GPT-OSS 120B
|
|
||||||
contextLimitSmall: 128000
|
|
||||||
contextLimitLarge: 128000
|
|
||||||
lowBalanceColorAlert: 500000
|
|
||||||
enabled: true
|
|
||||||
- id: qwen-235b
|
- id: qwen-235b
|
||||||
displayName: QWEN 235B
|
displayName: QWEN 235B ($)
|
||||||
|
origin: China
|
||||||
contextLimitSmall: 256000
|
contextLimitSmall: 256000
|
||||||
contextLimitLarge: 256000
|
contextLimitLarge: 256000
|
||||||
lowBalanceColorAlert: 500000
|
lowBalanceColorAlert: 500000
|
||||||
|
|||||||
@@ -70,7 +70,7 @@
|
|||||||
|
|
||||||
{# Define the Detections custom ruleset that should always be present #}
|
{# Define the Detections custom ruleset that should always be present #}
|
||||||
{% set CUSTOM_RULESET = {
|
{% set CUSTOM_RULESET = {
|
||||||
'name': '__custom__',
|
'name': 'custom',
|
||||||
'description': 'User-created custom rules created via the Detections module in the SOC UI',
|
'description': 'User-created custom rules created via the Detections module in the SOC UI',
|
||||||
'sourceType': 'elasticsearch',
|
'sourceType': 'elasticsearch',
|
||||||
'sourcePath': 'so_detection.ruleset:__custom__',
|
'sourcePath': 'so_detection.ruleset:__custom__',
|
||||||
@@ -83,7 +83,7 @@
|
|||||||
{# Always append the custom ruleset to suricataengine.rulesetSources if not already present #}
|
{# Always append the custom ruleset to suricataengine.rulesetSources if not already present #}
|
||||||
{% if SOCMERGED.config.server.modules.suricataengine is defined and SOCMERGED.config.server.modules.suricataengine.rulesetSources is defined %}
|
{% if SOCMERGED.config.server.modules.suricataengine is defined and SOCMERGED.config.server.modules.suricataengine.rulesetSources is defined %}
|
||||||
{% if SOCMERGED.config.server.modules.suricataengine.rulesetSources is not mapping %}
|
{% if SOCMERGED.config.server.modules.suricataengine.rulesetSources is not mapping %}
|
||||||
{% set custom_names = SOCMERGED.config.server.modules.suricataengine.rulesetSources | selectattr('name', 'equalto', '__custom__') | list %}
|
{% set custom_names = SOCMERGED.config.server.modules.suricataengine.rulesetSources | selectattr('name', 'equalto', 'custom') | list %}
|
||||||
{% if custom_names | length == 0 %}
|
{% if custom_names | length == 0 %}
|
||||||
{% do SOCMERGED.config.server.modules.suricataengine.rulesetSources.append(CUSTOM_RULESET) %}
|
{% do SOCMERGED.config.server.modules.suricataengine.rulesetSources.append(CUSTOM_RULESET) %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|||||||
@@ -696,6 +696,9 @@ soc:
|
|||||||
- field: displayName
|
- field: displayName
|
||||||
label: Display Name
|
label: Display Name
|
||||||
required: True
|
required: True
|
||||||
|
- field: origin
|
||||||
|
label: Country of Origin for the Model Training
|
||||||
|
required: false
|
||||||
- field: contextLimitSmall
|
- field: contextLimitSmall
|
||||||
label: Context Limit (Small)
|
label: Context Limit (Small)
|
||||||
forcedType: int
|
forcedType: int
|
||||||
|
|||||||
Reference in New Issue
Block a user