-
Notifications
You must be signed in to change notification settings - Fork 147
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev: Dockerized environment for drakrun.web development
- Loading branch information
Showing
5 changed files
with
136 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
FROM node:16-alpine AS build | ||
WORKDIR /usr/src/app | ||
COPY drakrun/web/frontend . | ||
|
||
RUN npm ci && npm run build | ||
|
||
FROM python:3.10 | ||
WORKDIR /usr/src/app | ||
COPY requirements.txt requirements.txt | ||
RUN pip install -r requirements.txt | ||
COPY . . | ||
COPY --from=build /usr/src/app/build /usr/src/app/drakrun/web/frontend/build | ||
ENV FLASK_APP=drakrun/web/app.py | ||
CMD ["flask", "run", "-h", "0.0.0.0"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
[redis] | ||
; Redis server | ||
; used for task scheduling and other non-persistent data | ||
host=redis | ||
port=6379 | ||
|
||
[minio] | ||
; MinIO server | ||
; used to store job queue and analysis results | ||
address=minio:9000 | ||
bucket=karton | ||
secure=0 | ||
; MinIO access credentials | ||
access_key=minioadmin | ||
secret_key=minioadmin | ||
|
||
[drakrun] | ||
; if set, drakrun dumps raw VM guest memory after finished analysis with drakvuf | ||
; compressed dumps are stored as "post_sample.raw_memdump.gz" in analysis folder | ||
raw_memory_dump=0 | ||
|
||
; whether guest VMs should have access to the Internet or no | ||
net_enable=0 | ||
|
||
; through which host interface the Internet traffic from guest VMs should be routed | ||
out_interface= | ||
|
||
; the address of DNS server as reported to the guest VM by DHCP | ||
; if you want to have a DNS on a gateway IP, use this setting: | ||
; dns_server=use-gateway-address | ||
dns_server=8.8.8.8 | ||
|
||
; path to syscalls filter file for syscalls plugin | ||
; leave empty to use no filter | ||
syscall_filter= | ||
|
||
; default analysis timeout if not specified by the user | ||
; analysis_timeout=600 | ||
|
||
; store analysis artifacts under root_uid of the Karton's task | ||
; instead of storing it under the uid of actual task; | ||
; this is more user friendly but your task trees | ||
; won't be able to invoke DRAKVUF Sandbox more than once | ||
; use_root_uid=1 | ||
|
||
; (advanced) override Karton instance name for this service: | ||
; identity=karton.drakrun-prod | ||
|
||
; (advanced) override Karton input filters for this service: | ||
; filters=[{"type": "sample", "stage": "recognized", "platform": "win32"}, {"type": "sample", "stage": "recognized", "platform": "win64"}] | ||
|
||
; (advanced) override Karton output headers for this service: | ||
; headers=[{"type": "analysis", "kind": "drakrun"}] | ||
|
||
; (advanced) Enable testing codepaths. Test sample artifacts will not be uploaded | ||
; to persistent storage. Their lifetime will be bound to karton tasks produced by drakrun | ||
; sample_testing=0 | ||
; | ||
; (advanced) override Karton test filters for this service: | ||
; test_filters=[ { "type": "sample-test", "platform": "win32", }, { "type": "sample-test", "platform": "win64" }] | ||
|
||
; (advanced) override Karton test headers for this service: | ||
; test_headers={ "type": "analysis-test", "kind": "drakrun" } | ||
|
||
; (advanced) maximum number of times a trap can be triggered within 10 seconds period | ||
; protects against API hammering techniques, default 0 (means: off) | ||
; anti_hammering_threshold=0 | ||
|
||
; (advanced) Attach DLL profiles to analyses | ||
; attach_profiles=0 | ||
; (advanced) Attach static ApiScout profile to analyses | ||
; attach_apiscout_profile=0 | ||
|
||
[drakvuf_plugins] | ||
; Pick DRAKVUF plugins that you want to use by default. | ||
; _all_=apimon,bsodmon,clipboardmon,cpuidmon,crashmon,debugmon,delaymon,exmon,filedelete,librarymon,memdump,procdump,procmon,regmon,rpcmon,ssdtmon,tlsmon,windowmon,wmimon | ||
|
||
; uncomment this to override plugins used for tasks with quality=low | ||
; (you can override plugins for other priorities too) | ||
; low=apimon,memdump | ||
|
||
[capa] | ||
; configure whether to analyze the dynamic output of DRAKVUF (apimon.log all syscall.log) | ||
analyze_drakmon_log=true | ||
|
||
; configure whether to analyze the memory dumps extracted by DRAKVUF | ||
analyze_memdumps=false | ||
|
||
; choose whether to analyze the malware process and its children only | ||
analyze_only_malware_pids=false | ||
|
||
; how many processes should be used for processing parallelization | ||
worker_pool_processes=4 | ||
|
||
[draktestd] | ||
; path to the extraction modules for | ||
; https://github.com/CERT-Polska/malduck | ||
modules=/opt/extractor-modules/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
services: | ||
web: | ||
build: | ||
context: ../drakrun | ||
dockerfile: ../dev/Dockerfile-web | ||
ports: | ||
- '5000:5000' | ||
volumes: | ||
- './config.ini:/etc/drakrun/config.ini' | ||
redis: | ||
image: "redis:latest" | ||
minio: | ||
image: "minio/minio:latest" | ||
entrypoint: sh | ||
command: -c "mkdir -p /data/drakrun && minio server --address 0.0.0.0:9000 --console-address :9001 /data" | ||
ports: | ||
- '9000:9000' | ||
- '9001:9001' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
build/ | ||
drakrun.egg-info/ | ||
*.egg-info/ | ||
dist/ | ||
__pycache__/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters