-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.json.bak
54 lines (54 loc) · 2.18 KB
/
config.json.bak
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
52
53
54
{
"General": {
"OutputDir": "www/output",
"TablesClass": "table table-sm",
"HTMLHeader": "<style>td{white-space:nowrap;}.h3{display:inline;}</style><link rel='stylesheet' href='https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css'><script src='https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js'></script><script src='https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js'></script>"
},
"Recaptcha": {
"PublicKey" : "--REDACTED--",
"PrivateKey" : "--REDACTED--"
},
"VirusTotal": {
"APIKeys": [
"YOUR_VIRUS_TOTAL_API_KEY",
"ANOTHER_OPTIONAL_VIRUS_TOTAL_API_KEY_IF_YOU_NEED_MORE"
],
"Input": "Argument",
"GeneralOutput": "0",
"Persistence": "SQL",
"PersistenceCredentials": {
"host":"localhost",
"database":"vt_scanned_ips_db",
"username_r":"--REDACTED--",
"password_r":"--REDACTED--",
"username_rw":"--REDACTED--",
"password_rw":"--REDACTED--",
"username_u":"--REDACTED--",
"password_u":"--REDACTED--"
},
"DisabledAttr": ["whois_timestamp","continent","asn","network","whois","country","response_code","as_owner","verbose_msg","last_https_certificate","https_certificate_date"],
"MaxResults": {
"resolutions": 10,
"detected_urls": 10,
"undetected_urls": 3,
"detected_downloaded_samples": 10,
"undetected_downloaded_samples": 3,
"detected_communicating_samples": 10,
"undetected_communicating_samples": 3,
"detected_referrer_samples": 10,
"undetected_referrer_samples": 3
},
"Order": ["resolutions","detected_urls","detected_downloaded_samples","detected_communicating_samples","detected_referrer_samples"],
"AttrSubstitution": {
"resolutions": "Passive DNS",
"detected_urls": "URLs",
"undetected_urls": "URLs",
"detected_downloaded_samples": "Downloaded Files",
"undetected_downloaded_samples": "Downloaded Files",
"detected_communicating_samples": "Communicating Files",
"undetected_communicating_samples": "Communicating Files",
"detected_referrer_samples": "Files Referring",
"undetected_referrer_samples": "Files Referring"
}
}
}