mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2026-08-18 13:42:27 +02:00
Compare commits
9
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
563b9d7c3b | ||
|
|
ec91f9b830 | ||
|
|
3e7f508620 | ||
|
|
c4555a5514 | ||
|
|
d4d63fa60a | ||
|
|
dcb931b97c | ||
|
|
8e6b16bde0 | ||
|
|
63692aa1a0 | ||
|
|
ea502e29d0 |
@@ -154,6 +154,8 @@ if [[ $EXCLUDE_FALSE_POSITIVE_ERRORS == 'Y' ]]; then
|
|||||||
EXCLUDED_ERRORS="$EXCLUDED_ERRORS|id.orig_h" # false positive (zeek test data)
|
EXCLUDED_ERRORS="$EXCLUDED_ERRORS|id.orig_h" # false positive (zeek test data)
|
||||||
EXCLUDED_ERRORS="$EXCLUDED_ERRORS|emerging-all.rules" # false positive (error in rulename)
|
EXCLUDED_ERRORS="$EXCLUDED_ERRORS|emerging-all.rules" # false positive (error in rulename)
|
||||||
EXCLUDED_ERRORS="$EXCLUDED_ERRORS|invalid query input" # false positive (Invalid user input in hunt query)
|
EXCLUDED_ERRORS="$EXCLUDED_ERRORS|invalid query input" # false positive (Invalid user input in hunt query)
|
||||||
|
EXCLUDED_ERRORS="$EXCLUDED_ERRORS|no data available for the requested dates" # false positive (pcap cypress test submits a job with an empty time frame)
|
||||||
|
EXCLUDED_ERRORS="$EXCLUDED_ERRORS|no job processor" # false positive (same empty-time-frame job on import nodes, where no pcap processor runs)
|
||||||
EXCLUDED_ERRORS="$EXCLUDED_ERRORS|example" # false positive (example test data)
|
EXCLUDED_ERRORS="$EXCLUDED_ERRORS|example" # false positive (example test data)
|
||||||
EXCLUDED_ERRORS="$EXCLUDED_ERRORS|status 200" # false positive (request successful, contained error string in content)
|
EXCLUDED_ERRORS="$EXCLUDED_ERRORS|status 200" # false positive (request successful, contained error string in content)
|
||||||
EXCLUDED_ERRORS="$EXCLUDED_ERRORS|app_layer.error" # false positive (suricata 7) in stats.log e.g. app_layer.error.imap.parser | Total | 0
|
EXCLUDED_ERRORS="$EXCLUDED_ERRORS|app_layer.error" # false positive (suricata 7) in stats.log e.g. app_layer.error.imap.parser | Total | 0
|
||||||
|
|||||||
@@ -732,11 +732,13 @@ soc:
|
|||||||
global: True
|
global: True
|
||||||
advanced: True
|
advanced: True
|
||||||
forcedType: int
|
forcedType: int
|
||||||
|
readonlyUi: True
|
||||||
maxDelegationDepth:
|
maxDelegationDepth:
|
||||||
description: Maximum delegation nesting depth for sub-agents. For example, a value of 2 lets the main agent delegate to a sub-agent that may itself delegate one level deeper. Any deeper delegation is refused and the requesting agent continues without it. Set to 0 to disable the limit.
|
description: Maximum delegation nesting depth for sub-agents. For example, a value of 2 lets the main agent delegate to a sub-agent that may itself delegate one level deeper. Any deeper delegation is refused and the requesting agent continues without it. Set to 0 to disable the limit.
|
||||||
global: True
|
global: True
|
||||||
advanced: True
|
advanced: True
|
||||||
forcedType: int
|
forcedType: int
|
||||||
|
readonlyUi: True
|
||||||
adapters:
|
adapters:
|
||||||
description: Configuration for AI adapters used by the Onion AI assistant. Please see documentation for help on which fields are required for which protocols.
|
description: Configuration for AI adapters used by the Onion AI assistant. Please see documentation for help on which fields are required for which protocols.
|
||||||
global: True
|
global: True
|
||||||
@@ -779,6 +781,60 @@ soc:
|
|||||||
description: Indicates if the Assistant Module should operate in agentic mode or not. If true, agents can work together to solve tasks.
|
description: Indicates if the Assistant Module should operate in agentic mode or not. If true, agents can work together to solve tasks.
|
||||||
global: True
|
global: True
|
||||||
forcedType: bool
|
forcedType: bool
|
||||||
|
agents:
|
||||||
|
description: Agent definitions for the Onion AI assistant, managed from the Agent Studio. An entry naming a system agent overrides only the fields an admin may change; everything else comes from the built-in definition.
|
||||||
|
global: True
|
||||||
|
advanced: False
|
||||||
|
readonlyUi: True
|
||||||
|
storage: db
|
||||||
|
forcedType: "[]{}"
|
||||||
|
helpLink: onion-ai
|
||||||
|
syntax: json
|
||||||
|
uiElements:
|
||||||
|
- field: name
|
||||||
|
label: Name
|
||||||
|
required: True
|
||||||
|
- field: enabled
|
||||||
|
label: Enabled
|
||||||
|
forcedType: bool
|
||||||
|
- field: isOrchestrator
|
||||||
|
label: Orchestrator
|
||||||
|
forcedType: bool
|
||||||
|
- field: model
|
||||||
|
label: Model
|
||||||
|
- field: allowedSkills
|
||||||
|
label: Skills
|
||||||
|
forcedType: "[]string"
|
||||||
|
- field: canDelegateTo
|
||||||
|
label: Delegates To
|
||||||
|
forcedType: "[]string"
|
||||||
|
- field: description
|
||||||
|
label: Description
|
||||||
|
- field: persona
|
||||||
|
label: Persona
|
||||||
|
multiline: True
|
||||||
|
skills:
|
||||||
|
description: Skill definitions for the Onion AI assistant, managed from the Agent Studio. An entry naming a system skill overrides only its enabled state and persona addendum; its tool set comes from the built-in definition.
|
||||||
|
global: True
|
||||||
|
advanced: False
|
||||||
|
readonlyUi: True
|
||||||
|
storage: db
|
||||||
|
forcedType: "[]{}"
|
||||||
|
helpLink: onion-ai
|
||||||
|
syntax: json
|
||||||
|
uiElements:
|
||||||
|
- field: name
|
||||||
|
label: Name
|
||||||
|
required: True
|
||||||
|
- field: enabled
|
||||||
|
label: Enabled
|
||||||
|
forcedType: bool
|
||||||
|
- field: tools
|
||||||
|
label: Tools
|
||||||
|
forcedType: "[]string"
|
||||||
|
- field: persona
|
||||||
|
label: Persona
|
||||||
|
multiline: True
|
||||||
agentMapping:
|
agentMapping:
|
||||||
Orchestrator:
|
Orchestrator:
|
||||||
description: The initial agent in most agentic conversations. This agent will delegate requests to specialized agents.
|
description: The initial agent in most agentic conversations. This agent will delegate requests to specialized agents.
|
||||||
|
|||||||
Reference in New Issue
Block a user