forked from xme/pastemon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregex.conf.sample
39 lines (38 loc) · 945 Bytes
/
regex.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
<!--
pastemon.pl regex configuration file (sample)
//-->
<config>
<regex>
<search>rootshell\.be</search>
</regex>
<regex>
<search>anonbelgium</search>
</regex>
<regex>
<search>-----BEGIN (RSA|DSA) PRIVATE KEY-----</search>
</regex>
<regex>
<search>-- phpMyAdmin SQL Dump</search>
</regex>
<!--
Example of exclusion: search for "belgium" without "france" in the same pastie
//-->
<regex>
<search>belgium</search>
<exclude>france</exclude>
</regex>
<!--
Example fo inclusion: search for belgium" and "luxembourg" in the same pastie
//-->
<regex>
<search>belgium</search>
<include>luxembourg</include>
</regex>
<!--
Example of match 5 IP addresses
//-->
<regex>
<search>\d+\.\d+\.\d+\.\d+</search>
<count>5</count>
</regex>
</config>