|
| 1 | +--- |
| 2 | +sidebar_position: 1 |
| 3 | +--- |
| 4 | + |
| 5 | +# Introduction |
| 6 | + |
| 7 | +Apollo is an **experimental** cross platform timelining GUI tool to review |
| 8 | +artemis data. It is heavily inspired by the |
| 9 | +[Timesketch](https://timesketch.org/) project. However, Apollo uses the |
| 10 | +[Tauri](https://tauri.app) GUI framework and is _not_ a web app. |
| 11 | + |
| 12 | +Similar to Timesketch, apollo uses [OpenSearch](https://opensearch.org/) to |
| 13 | +store and query data. |
| 14 | + |
| 15 | +# How to build |
| 16 | + |
| 17 | +Apollo requires a OpenSearch instance in order to store and query data. Podman |
| 18 | +or docker is the easiest way to setup OpenSearch |
| 19 | + |
| 20 | +1. Install Podman or Docker on your system. Podman is recommended |
| 21 | +2. You can use the |
| 22 | + [setup scripts](https://github.com/puffyCid/artemis/tree/main/apollo) in the |
| 23 | + artemis repo to quickly spin up a Podman OpenSearch container |
| 24 | +3. Install NodeJS and npm |
| 25 | +4. Clone the [artemis](https://github.com/puffyCid/artemis) repo |
| 26 | +5. Navigate to apollo directory |
| 27 | +6. Setup TailwindCSS: `npm run tailwind` |
| 28 | +7. Run `npm run tauri dev` to start a local instance or use |
| 29 | + `npm run tauri build` to compile a release binary |
| 30 | + |
| 31 | +# Uploading data |
| 32 | + |
| 33 | +Apollo uses the same timeline format as Timesketch. Timelined data must have the |
| 34 | +following fields: |
| 35 | + |
| 36 | +1. Datetime (datetime) |
| 37 | +2. Timestamp Description (timestamp_desc) |
| 38 | +3. Message (message) |
| 39 | +4. Data type (data_type) |
| 40 | + |
| 41 | +Apollo supports timelining JSONL output from artemis. For example, if you |
| 42 | +collect and parse Windows Registry data |
| 43 | +(`artemis acquire --format jsonl registry --alt-file <path to NTUSER.DAT>`). |
| 44 | + |
| 45 | +Apollo can timeline and upload the data to OpenSearch |
| 46 | + |
| 47 | +# Screenshots |
| 48 | + |
| 49 | +Timeline View  |
| 50 | + |
| 51 | +Timeline Entry Details  |
| 52 | + |
| 53 | +Timeline Additional Details |
| 54 | + |
0 commit comments