Skip to content

Commit

Permalink
Update docs and rules
Browse files Browse the repository at this point in the history
  • Loading branch information
wagga40 committed Dec 2, 2023
1 parent 2a190bf commit 1df345b
Show file tree
Hide file tree
Showing 14 changed files with 1,275 additions and 1,000 deletions.
Binary file modified docs/Zircolite_manual.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/_sidebar.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

* Advanced use
* [Working with large datasets](Advanced.md#working-with-large-datasets)
* [Keep data used by Zircolite](#keep-data-used-by-zircolite)
* [Keep data used by Zircolite](Advanced.md#keep-data-used-by-zircolite)
* [Filtering](Advanced.md#filtering)
* [Forwarding detected events](Advanced.md#forwarding-detected-events)
* [Templating and Formatting](Advanced.md#templating-and-formatting)
Expand Down
18 changes: 18 additions & 0 deletions rules/rules_linux.json
Original file line number Diff line number Diff line change
Expand Up @@ -2373,6 +2373,24 @@
],
"filename": "proc_creation_lnx_susp_java_children.yml"
},
{
"title": "Potential Linux Process Code Injection Via DD Utility",
"id": "4cad6c64-d6df-42d6-8dae-eb78defdc415",
"description": "Detects the injection of code by overwriting the memory map of a Linux process using the \"dd\" Linux command.",
"author": "Joseph Kamau",
"tags": [
"attack.defense_evasion",
"attack.t1055.009"
],
"falsepositives": [
"Unknown"
],
"level": "medium",
"rule": [
"SELECT * FROM logs WHERE (Image LIKE '%/dd' ESCAPE '\\' AND CommandLine LIKE '%of=%' ESCAPE '\\' AND CommandLine LIKE '%/proc/%' ESCAPE '\\' AND CommandLine LIKE '%/mem%' ESCAPE '\\')"
],
"filename": "proc_creation_lnx_dd_process_injection.yml"
},
{
"title": "Decode Base64 Encoded Text",
"id": "e2072cab-8c9a-459b-b63c-40ae79e27031",
Expand Down
126 changes: 63 additions & 63 deletions rules/rules_windows_generic.json

Large diffs are not rendered by default.

295 changes: 169 additions & 126 deletions rules/rules_windows_generic_full.json

Large diffs are not rendered by default.

126 changes: 63 additions & 63 deletions rules/rules_windows_generic_high.json

Large diffs are not rendered by default.

283 changes: 163 additions & 120 deletions rules/rules_windows_generic_medium.json

Large diffs are not rendered by default.

297 changes: 170 additions & 127 deletions rules/rules_windows_generic_pysigma.json

Large diffs are not rendered by default.

126 changes: 63 additions & 63 deletions rules/rules_windows_sysmon.json

Large diffs are not rendered by default.

295 changes: 169 additions & 126 deletions rules/rules_windows_sysmon_full.json

Large diffs are not rendered by default.

126 changes: 63 additions & 63 deletions rules/rules_windows_sysmon_high.json

Large diffs are not rendered by default.

283 changes: 163 additions & 120 deletions rules/rules_windows_sysmon_medium.json

Large diffs are not rendered by default.

297 changes: 170 additions & 127 deletions rules/rules_windows_sysmon_pysigma.json

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion tools/zircolite_server/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
flask>=1.1.2
jinja2>=2.11.3
werkzeug>=3.0.1 # not directly required, pinned by Snyk to avoid a vulnerability

0 comments on commit 1df345b

Please sign in to comment.