Skip to content

Commit

Permalink
Merge pull request #979 from LDO-CERT/dj
Browse files Browse the repository at this point in the history
use dockerfile instead of volume
  • Loading branch information
dadokkio authored Jan 18, 2024
2 parents 682a251 + 949c0ea commit 7267545
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
## Changelog

<details open>
<summary><b>WIP</b></summary>
<summary><b>OROCHI 2.0.1 [2024/01/18]</b></summary>

* Add tree visualization for other plugin
* Add support for linux dump
* Paginate analysis result
* Paginate analysis results in table
</details>

<details>
Expand Down
1 change: 1 addition & 0 deletions compose/local/dask/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ COPY ./compose/local/dask/prepare.sh /usr/bin/prepare.sh
RUN chmod +x /usr/bin/prepare.sh

COPY ./compose/local/dask/daskworkerinit.py /opt/daskworkerinit.py
COPY ./compose/local/__init__.py /src/volatility3/volatility3/framework/constants/__init__.py

WORKDIR /app
COPY . .
Expand Down
2 changes: 2 additions & 0 deletions compose/local/django/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ WORKDIR /
COPY ./requirements /requirements
RUN pip install -r /requirements/local.txt --ignore-installed ruamel.yaml

COPY ./compose/local/__init__.py /src/volatility3/volatility3/framework/constants/__init__.py

WORKDIR /app
COPY . .
COPY ./compose/local/django/entrypoint /entrypoint
Expand Down
2 changes: 0 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ services:
- plugin_path:/src/volatility3/volatility3/framework/plugins/custom
- yara_path:/yara
- cache_path:/root/.cache/volatility3
- ./compose/local/__init__.py:/src/volatility3/volatility3/framework/constants/__init__.py
env_file:
- ./.envs/.local/.django
- ./.envs/.local/.postgres
Expand Down Expand Up @@ -178,7 +177,6 @@ services:
- plugin_path:/src/volatility3/volatility3/framework/plugins/custom
- yara_path:/yara
- cache_path:/root/.cache/volatility3
- ./compose/local/__init__.py:/src/volatility3/volatility3/framework/constants/__init__.py
env_file:
- ./.envs/.local/.django
- ./.envs/.local/.postgres
Expand Down
8 changes: 4 additions & 4 deletions orochi/website/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,14 +87,14 @@
SYSTEM_COLUMNS = ["orochi_createdAt", "orochi_os", "orochi_plugin"]

PLUGIN_WITH_CHILDREN = [
"windows.pstree.pstree",
"linux.pstree.pstree",
"linux.iomem.iomem",
"windows.registry.userassist.userassist",
"frameworkinfo.frameworkinfo",
"linux.iomem.iomem",
"linux.pstree.pstree",
"windows.devicetree.devicetree",
"windows.mbrscan.mbrscan",
"windows.mftscan.mftscan",
"windows.pstree.pstree",
"windows.registry.userassist.userassist",
]


Expand Down

0 comments on commit 7267545

Please sign in to comment.