Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/1-getting-started/what-is-limacharlie.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ Dig in, and build the security program you need and have always wanted.

- [Quickstart Guide](quickstart.md)
- [Core Concepts](core-concepts.md)
- [Use Cases](use-cases)
- [Use Cases](use-cases/edr.md)
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ rules:
value: "reg add HKLM"
```

See the [Detection Logic Operators](../8-reference/detection-logic-operators.md) reference for the full list of supported platform names.
See the [Detection Logic Operators](../../8-reference/detection-logic-operators.md) reference for the full list of supported platform names.

### IP Address Operations

Expand Down Expand Up @@ -661,7 +661,7 @@ Creates a detection (alert) that is sent to the detection output stream, the Det
- `metadata`: Free-form key-value data (appears as `detect_mtd` in the detection)
- `detect_data`: Free-form field for extracting specific elements into a known format

The `name`, `metadata`, and `detect_data` parameters support [template strings](../4-data-queries/template-transforms.md). Note that the template context is the detection itself, so use `.detect.event.USER_NAME` not `.event.USER_NAME`.
The `name`, `metadata`, and `detect_data` parameters support [template strings](../../4-data-queries/template-transforms.md). Note that the template context is the detection itself, so use `.detect.event.USER_NAME` not `.event.USER_NAME`.

### `output` - Data Routing

Expand All @@ -687,7 +687,7 @@ Sends a command to the sensor that generated the event.
- `command`: The sensor command to execute (supports template strings, e.g., `artifact_get {{ .event.FILE_PATH }}`)
- `investigation`: Optional unique identifier for the task and resulting events

See [Endpoint Commands](../8-reference/endpoint-commands.md) for all available commands.
See [Endpoint Commands](../../8-reference/endpoint-commands.md) for all available commands.

### `add tag` / `remove tag` - Sensor Tagging

Expand Down Expand Up @@ -723,7 +723,7 @@ Manages sensor-specific variables for cross-rule state tracking.
- `value`: Value to store (supports lookback `<<path>>` syntax)
- `ttl`: Optional, seconds until the variable expires

Variables set here can be referenced in detection rules using `[[variable_name]]` syntax. See [Sensor Variables](../3-detection-response/sensor-variables.md) for detailed usage.
Variables set here can be referenced in detection rules using `[[variable_name]]` syntax. See [Sensor Variables](../sensor-variables.md) for detailed usage.

### `isolate network` / `rejoin network` - Network Control

Expand Down Expand Up @@ -821,7 +821,7 @@ Spawns a Claude AI session for automated investigation and response. Supports tw
debounce_key: "triage-{{ .routing.sid }}"
```

See [AI Sessions](../9-ai-sessions/dr-sessions.md) for full configuration options.
See [AI Sessions](../../9-ai-sessions/dr-sessions.md) for full configuration options.

### Suppression

Expand Down Expand Up @@ -988,7 +988,7 @@ Templates enable dynamic content generation in response actions using Go templat
- `{{ base .path }}` — Filename from path
- `{{ dir .path }}` — Directory from path

See [Template Strings](../4-data-queries/template-transforms.md) for the full reference.
See [Template Strings](../../4-data-queries/template-transforms.md) for the full reference.

### Resource Integration

Expand Down
2 changes: 1 addition & 1 deletion docs/5-integrations/outputs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -192,5 +192,5 @@ Example: create a syslog output for event data.
## See Also

- [Stream Structures](stream-structures.md)
- [Output Destinations](destinations)
- [Output Destinations](destinations/amazon-s3.md)
- [D&R Response Actions](../../8-reference/response-actions.md)
2 changes: 1 addition & 1 deletion docs/5-integrations/outputs/stream-structures.md
Original file line number Diff line number Diff line change
Expand Up @@ -504,5 +504,5 @@ Use deployment events to track sensor health and detect:
- [Event Structure Reference](../../8-reference/event-schemas.md#event-structure-reference)
- [Detection Structure](../../3-detection-response/tutorials/writing-testing-rules.md#understanding-detection-structure)
- [LimaCharlie Data Structures](../../1-getting-started/core-concepts.md#limacharlie-data-structures)
- [Output Destinations](destinations/) - Configuration guides for specific destinations
- [Output Destinations](destinations/amazon-s3.md) - Configuration guides for specific destinations
- [Testing Outputs](testing.md) - How to validate output configurations
2 changes: 1 addition & 1 deletion docs/6-developer-guide/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ Trigger a CLI command as a D&R rule response action using `extension request`:
Field descriptions:

* `command_line`: the full CLI command to execute.
* `credentials`: a reference to stored credentials in the [secrets manager](../7-administration/access/secrets.md), used to authenticate the CLI command.
* `credentials`: a reference to stored credentials in the [secrets manager](../7-administration/config-hive/secrets.md), used to authenticate the CLI command.
Loading