Rapidly Search and Hunt through Linux Forensics Artifacts
ChopChopGo inspired by Chainsaw utilizes Sigma rules for forensics artifact recovery, enabling rapid and comprehensive analysis of logs and other artifacts to identify potential security incidents and threats on Linux.
Features
๐ฏ Hunt for threats using Sigma detection rules and custom ChopChopGo detection rulesโก Lightning fast, written in go๐ชถ Clean and lightweight execution and output formats without unnecessary bloat๐ป Runs on Linux
$ ./ChopChopGo -target syslog -rules ./rules/linux/builtin/syslog/
โโโโโโ โโโ โโ โโโโโโ โโโโโโ โโโโโโ โโโ โโ โโโโโโ โโโโโโ โโโโโ โโโโโโ
โโโโ โโ โโโโ โโโโโโโ โโโโโโโ โโโ โโโโ โโ โโโโ โโโโโโโ โโโโโโโ โโโ โโโ โโโโโโโ โโโ
โโโ โ โโโโโโโโโโโโ โโโโโโโ โโโโ โโโ โ โโโโโโโโโโโโ โโโโโโโ โโโโ โโโโโโโโโโโโ โโโ
โโโโ โโโโโโโ โโโ โโโ โโโโโโโโโโ โ โโโโ โโโโโโโ โโโ โโโ โโโโโโโโโโ โ โโโ โโโโโโ โโโ
โ โโโโโ โโโโโโโโโโ โโโโโโโโโโโ โ โ โ โโโโโ โโโโโโโโโโ โโโโโโโโโโโ โ โ โโโโโโโโโ โโโโโโโ
โ โโ โ โ โ โโโโโโ โโโโโโ โโโโ โ โ โ โโ โ โ โ โโโโโโ โโโโโโ โโโโ โ โ โโ โ โ โโโโโโ
โ โ โ โโโ โ โ โ โโ โโ โ โ โ โ โโโ โ โ โ โโ โโ โ โ โ โ โ โโ
โ โ โโ โโ โ โ โ โโ โ โ โโ โโ โ โ โ โโ โ โ โ โ โ โ โ
โ โ โ โ โ โ โ โ โ โ โ โ โ โ โ โ โ
โ โ
By Keyboard Cowboys (M00NL1G7)
Using syslog file: /var/log/messages
100% |โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ| (67504/67504, 27840 it/s)
+-----------------+--------------------------------+-----------------------------------------+
| TIMESTAMP | MESSAGE | TAGS |
+-----------------+--------------------------------+-----------------------------------------+
| Mar 2 20:04:38 | fedora systemd[1]: | attack.defense_evasion-attack.t1562.004 |
| | iptables.service: Deactivated | |
| | successfully. | |
| Mar 4 10:19:03 | DESKTOP-RNL1DBO systemd[1]: | attack.defense_evasion-attack.t1562.004 |
| | iptables.service: Deactivated | |
| | successfully. | |
+-----------------+--------------------------------+-----------------------------------------+
Processed 67504 syslog events
Quick Start Guide
Downloading and Running
For an all-in-one zip container the ChopChopGo binary, and the official sigma rules to go with it, check out the releases section In this releases section you will also find pre-compiled binary-only versions of ChopChopGo.
If you want to compile ChopChopGo yourself, you can clone the ChopChopGo repo:
git clone https://github.com/M00NLIG7/ChopChopGo.git
and compile the code yourself by running: go build
.
Command Examples
./ChopChopGo # Defaults to searching through auditd
./ChopChopGo -target syslog -rules ./rules/linux/builtin/syslog/ # This searches through syslog with the official sigma rules
./ChopChopGo -target journald -rules ./rules/linux/builtin/ # This searches through journald with specified rules
Alternative Output Formats
You may wish to use ChopChopGo in an automated fashion. The CSV and JSON output options are useful for this purpose. With both of these options, the header and progress statistics are not printed to the console.
Each option can be specified using the -out
parameter.
CSV
./ChopChopGo -target sylog -rules ./rules/linux/builtin/syslog/ -out csv # This searches through syslog with the official sigma rules, then outputs the data in CSV format
JSON
./ChopChopGo -target syslog -rules ./rules/linux/builtin/syslog/ -out json # This searches through syslog with the official sigma rules, then outputs the data as JSON