-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathservice_manifest.yml
51 lines (44 loc) · 1.07 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
47
48
49
50
51
name: URLDownloader
version: $SERVICE_TAG
description: This service downloads potentially malicious URLs.
accepts: uri/https?$
rejects: empty|metadata/.*
stage: CORE
category: Internet Connected
timeout: 300
disable_cache: false
enabled: true
is_external: true
config:
do_not_download_regexes: []
request_timeout: 150
proxies:
no_proxy:
localhost_proxy:
http: 127.0.0.1:8080
https: 127.0.0.1:8080
no_sandbox: False
submission_params:
- default: "no_proxy"
name: proxy
type: list
value: "no_proxy"
list: ["no_proxy", "localhost_proxy"]
- default: "image/svg|text/json"
name: regex_extract_filetype
type: str
value: "image/svg|text/json"
- default: "image/*|text/*|unknown|code/css"
name: regex_supplementary_filetype
type: str
value: "image/*|text/*|unknown|code/css"
- default: true
name: extract_unmatched_filetype
type: bool
value: true
docker_config:
image: ${REGISTRY}cccs/assemblyline-service-urldownloader:$SERVICE_TAG
cpu_cores: 1
ram_mb_min: 512
ram_mb: 1024
allow_internet_access: true