https://github.com/puffyCid/artemis
A cross platform forensic parser written in Rust!
https://github.com/puffyCid/artemis
dfir digital-forensics incident-response rust
Last synced: 2 months ago
JSON representation
A cross platform forensic parser written in Rust!
- Host: GitHub
- URL: https://github.com/puffyCid/artemis
- Owner: puffyCid
- License: mit
- Created: 2023-05-18T00:05:33.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-30T00:14:29.000Z (8 months ago)
- Last Synced: 2024-10-30T02:49:17.772Z (8 months ago)
- Topics: dfir, digital-forensics, incident-response, rust
- Language: Rust
- Homepage:
- Size: 33.4 MB
- Stars: 64
- Watchers: 2
- Forks: 8
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Artemis
[](https://opensource.org/licenses/MIT)
[](https://codecov.io/github/puffyCid/artemis)

Artemis is a powerful command line digital forensic and incident response (DFIR)
tool that collects forensic data from Windows, macOS, and Linux endpoints. Its
primary focus is: speed, ease of use, and low resource usage.\
Notable features _so far_:- Setup collections using basic TOML files
- Parsing support for large amount of forensic artifacts (25+)
- Output to JSON, JSONL, or CSV file(s)
- Can output results to local system or upload to cloud services.
- Embedded JavaScript runtime via [Boa](https://boajs.dev)Checkout the online guide at https://puffycid.github.io/artemis-api for indepth
walkthrough on using artemis## Quick Guide
1. Download the latest stable release binary from GitHub. Nightly versions also
[available](https://github.com/puffyCid/artemis/releases/tag/nightly)
2. Run artemis!```
artemis -h
Usage: artemis [OPTIONS] [COMMAND]Commands:
acquire Acquire forensic artifacts
help Print this message or the help of the given subcommand(s)Options:
-t, --toml Full path to TOML collector
-d, --decode Base64 encoded TOML file
-j, --javascript Full path to JavaScript file
-h, --help Print help
-V, --version Print version
```An example to example collect a process listing on macOS
```
> artemis acquire -h
Acquire forensic artifactsUsage: artemis acquire [OPTIONS] [COMMAND]
Commands:
processes Collect processes
connections Collect network connections
filelisting Pull filelisting
systeminfo Get systeminfo
prefetch windows: Parse Prefetch
eventlogs windows: Parse EventLogs
rawfilelisting windows: Parse NTFS to get filelisting
shimdb windows: Parse ShimDatabase
registry windows: Parse Registry
userassist windows: Parse Userassist
shimcache windows: Parse Shimcache
shellbags windows: Parse Shellbags
amcache windows: Parse Amcache
shortcuts windows: Parse Shortcuts
usnjrnl windows: Parse UsnJrnl
bits windows: Parse BITS
srum windows: Parse SRUM
users-windows windows: Parse Users
search windows: Parse Windows Search
tasks windows: Parse Windows Tasks
services windows: Parse Windows Services
jumplists windows: Parse Jumplists
recyclebin windows: Parse RecycleBin
wmipersist windows: Parse WMI Repository
outlook windows: Parse Outlook messages
mft windows: Parse MFT file
execpolicy macos: Parse ExecPolicy
users-macos macos: Collect local users
fsevents macos: Parse FsEvents entries
emond macos: Parse Emond persistence. Removed in Ventura
loginitems macos: Parse LoginItems
launchd macos: Parse Launch Daemons and Agents
groups-macos macos: Collect local groups
safari-history macos: Collect Safari History
safari-downloads macos: Collect Safari Downloads
unifiedlogs macos: Parse the Unified Logs
sudologs-macos macos: Parse Sudo log entries from Unified Logs
spotlight macos: Parse the Spotlight database
shellhistory unix: Parse Shellhistory
cron unix: Parse Cron Jobs
sudologs-linux linux: Grab Sudo logs
journals linux: Parse systemd Journal files
logons linux: Parse Logon files
help Print this message or the help of the given subcommand(s)Options:
--format Output format. JSON or JSONL or CSV [default: JSON]
--output-dir Optional output directory for storing results [default: ./tmp]
--compress GZIP Compress results
--timeline Timeline parsed data. Output is always JSONL
-h, --help Print help> artemis acquire processes
```You can also run collections using TOML files or JavaScript code!
The online documentation contains in depth overview of using artemis