-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathpastemon.conf.sample
73 lines (66 loc) · 2.39 KB
/
pastemon.conf.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
<!--
pastemon.pl main configuration file sample
Note: Features can be disabled by commenting them using standard comment tags.
//-->
<pastemon>
<!-- Core features //-->
<core>
<ignore-case>yes</ignore-case>
<pid-file>/var/run/pastemon.pid</pid-file>
<regex-file>regex.conf</regex-file>
<sample-size>256</sample-size>
<proxy-config>proxies.conf</proxy-config>
<ua-config>user-agents.conf</ua-config>
<dump-directory>/home/pastemon/dump/%Y/%M/%D</dump-directory>
<dump-all>yes</dump-all>
<compress-pasties>yes</compress-pasties>
<http-timeout>15</http-timeout>
<!-- Use Jaro-Winkler distance algorithm //-->
<distance-min>0.95</distance-min>
<distance-max-size>10240</distance-max-size>
</core>
<!-- Websites to monitor //-->
<websites>
<pastebin>yes</pastebin>
<pastebin-delay>10</pastebin-delay>
<pastie>yes</pastie>
<pastie-delay>120</pastie-delay>
<nopaste>yes</nopaste>
<nopaste-delay>300</nopaste-delay>
<pastesite>yes</pastesite>
<pastesite-delay>300</pastesite-delay>
</websites>
<!-- Follow URLs //-->
<urls>
<follow>yes</follow>
<matching>(anonpaste|pastebin\.com|pastie\.org|pastehtml\.com|pastebay\.net|pastee\.org)</matching>
</urls>
<!-- CEF Output (ArcSight) //-->
<cef-output>
<destination>10.0.0.1</destination>
<port>514</port>
<severity>3</severity>
</cef-output>
<!-- Syslog Output //-->
<syslog-output>
<facility>daemon</facility>
</syslog-output>
<!-- Email Output //-->
<smtp-output>
<smtp-server>127.0.0.1</smtp-server>
<from>[email protected]</from>
<recipient>[email protected]</recipient>
<subject>PasteMon Alert</subject>
</smtp-output>
<!-- Wordpress Output (XMLRPC) //-->
<wordpress-output>
<site>www.myblog.com</site>
<user>editor</user>
<password>averystrongpassword</password>
<category>favorite</category>
</wordpress-output>
<!-- SQLite Support //-->
<db-output>
<db-file>/home/pastemon/pastemon.db</db-file>
</db-output>
</pastemon>