forked from kevthehermit/PasteHunter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.json.sample
106 lines (106 loc) · 2.64 KB
/
settings.json.sample
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"inputs": {
"pastebin":{
"enabled": true,
"module": "inputs.pastebin",
"api_scrape": "https://pastebin.com/api_scraping.php",
"api_raw": "https://pastebin.com/api_scrape_item.php?i=",
"paste_limit": 200,
"store_all": false
},
"dumpz": {
"enabled": true,
"module": "inputs.dumpz",
"api_scrape": "https://dumpz.org/api/recent",
"api_raw": "https://dumpz.org/api/dump",
"paste_limit": 200,
"store_all": false
},
"gists": {
"enabled": true,
"module": "inputs.gists",
"api_token": "",
"api_limit": 100,
"store_all": false,
"user_blacklist": [],
"file_blacklist": ["grahamcofborg-eval-package-list"]
}
},
"outputs": {
"elastic_output": {
"enabled": true,
"module": "outputs.elastic_output",
"classname": "ElasticOutput",
"elastic_index": "paste-test",
"elastic_host": "192.168.1.22",
"elastic_port": 9200,
"elastic_user": "elastic",
"elastic_pass": "changeme",
"elastic_ssl": false,
"weekly_index": false
},
"json_output": {
"enabled": true,
"module": "outputs.json_output",
"classname": "JsonOutput",
"output_path": "logs/json/",
"store_raw": true,
"encode_raw": true
},
"csv_output": {
"enabled": false,
"module": "outputs.csv_output",
"classname": "CSVOutput",
"output_path": "/logs/csv/"
},
"syslog_output": {
"enabled": false,
"module": "outputs.syslog_output",
"classname": "SyslogOutput",
"host": "192.168.1.1",
"port": 514
},
"smtp_output": {
"enabled": false,
"module": "outputs.smtp_output",
"classname": "SMTPOutput",
"smtp_host": "smtp.server.com",
"smtp_port": 25,
"smtp_tls": true,
"smtp_user": "smtpusername",
"smtp_pass": "smtppassword",
"recipient": "emailaddress that gets the alerts",
"rule_list": ["custom_keywords"]
}
},
"yara": {
"rule_path": "YaraRules",
"blacklist": true,
"test_rules": false
},
"general": {
"run_frequency": 300
},
"post_process": {
"post_email": {
"enabled": false,
"module": "postprocess.post_email",
"rule_list": ["email_list"]
},
"post_b64": {
"enabled": false,
"module": "postprocess.post_b64",
"rule_list": ["b64_exe", "b64_rar", "b64_zip", "b64_gzip"],
"cuckoo": {
"enabled": false,
"api_host": "127.0.0.1",
"api_port": 8080
},
"viper": {
"enabled": false,
"api_host": "127.0.0.1",
"api_port": 8080
}
}
}
}