-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathservice_manifest.yml
46 lines (38 loc) · 1.44 KB
/
service_manifest.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: CAPA
version: $SERVICE_TAG
description: This service uses the CAPA open source library to identify what the program at hand could do.
# Regex defining the types of files the service accepts and rejects
accepts: executable/windows/.*
rejects: empty|metadata/.*|executable/windows/dos|executable/windows/com
# At which stage the service should run (one of FILTER, EXTRACT, CORE, SECONDARY, POST, REVIEW)
# NOTE: Stages are executed in the order defined in the list
stage: CORE
# Which category the service is part of (one of Antivirus, Dynamic Analysis, External, Extraction, Filtering, Internet Connected, Networking, Static Analysis)
category: Static Analysis
# Does the service require access to the file to perform its task
# If set to false, the service will only have access to the file metadata (e.g. Hashes, size, type, ...)
file_required: true
# Maximum execution time the service has before it's considered to be timed out
timeout: 300
# is the service enabled by default
enabled: true
privileged: true
config:
max_file_size: 512000
submission_params:
- default: "default"
name: renderer
type: list
value: "default"
list: ["default", "simple", "verbose"]
heuristics:
- description: CAPA found a matching signature
filetype: "executable/windows"
heur_id: 1
name: Signature Found
score: 0
docker_config:
image: ${REGISTRY}cccs/assemblyline-service-capa:$SERVICE_TAG
cpu_cores: 1
ram_mb_min: 3078
ram_mb: 4096