ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/hopm/trunk/doc/reference.conf
Revision: 8583
Committed: Sun Oct 14 17:16:57 2018 UTC (7 years, 9 months ago) by michael
File size: 24299 byte(s)
Log Message:
- Update reference.conf: remove dead tor.dnsbl.sectoor.de from blacklists

File Contents

# Content
1 /*
2 * Hybrid Open Proxy Monitor - HOPM sample configuration
3 *
4 * Copyright (c) 2014-2018 ircd-hybrid development team
5 *
6 * $Id$
7 */
8
9 /*
10 * Shell style (#), C++ style (//) and C style comments are supported.
11 *
12 * Files may be included by either:
13 * .include "filename"
14 * .include <filename>
15 *
16 * Times/durations are written as:
17 * 12 hours 30 minutes 1 second
18 *
19 * Valid units of time:
20 * year, month, week, day, hour, minute, second
21 *
22 * Valid units of size:
23 * megabyte/mbyte/mb, kilobyte/kbyte/kb, byte
24 *
25 * Sizes and times may be singular or plural.
26 */
27
28 options {
29 /*
30 * Full path and filename for storing the process ID of the running
31 * HOPM.
32 */
33 pidfile = "var/run/hopm.pid";
34
35 /*
36 * Maximum commands to queue. Set to 0 if you don't want HOPM
37 * to process commands.
38 */
39 command_queue_size = 64;
40
41 /*
42 * Interval to check command queue for timed out commands.
43 */
44 command_interval = 10 seconds;
45
46 /*
47 * Timeout of commands.
48 */
49 command_timeout = 180 seconds;
50
51 /*
52 * How long to store the IP address of hosts which are confirmed
53 * (by previous scans) to be secure. New users from these
54 * IP addresses will not be scanned again until this amount of time
55 * has passed. IT IS STRONGLY RECOMMENDED THAT YOU DO NOT USE THIS
56 * DIRECTIVE, but it is provided due to demand.
57 *
58 * The main reason for not using this feature is that anyone capable
59 * of running a proxy can get abusers onto your network - all they
60 * need do is shut the proxy down, connect themselves, restart the
61 * proxy, and tell their friends to come flood.
62 *
63 * Keep this directive commented out to disable negative caching.
64 */
65 # negcache = 1 hour;
66
67 /*
68 * How long between rebuilds of the negative cache. The negcache
69 * is only rebuilt to free up memory used by entries that are too old.
70 * You probably don't need to tweak this unless you have huge amounts
71 * of people connecting (hundreds per minute). Default is 12 hours.
72 */
73 negcache_rebuild = 12 hours;
74
75 /*
76 * Amount of file descriptors to allocate to asynchronous DNS. 64
77 * should be plenty for almost anyone.
78 */
79 dns_fdlimit = 64;
80
81 /*
82 * Amount of time the resolver waits until a response is received
83 * from a name server.
84 */
85 dns_timeout = 5 seconds;
86
87 /*
88 * Put the full path and filename of a logfile here if you wish to log
89 * every scan done. Normally HOPM only logs successfully detected
90 * proxies in the hopm.log, but you may get abuse reports to your ISP
91 * about portscanning. Being able to show that it was HOPM that did
92 * the scan in question can be useful. Leave commented for no
93 * logging.
94 */
95 # scanlog = "var/log/scan.log";
96 };
97
98
99 irc {
100 /*
101 * IP address to bind to for the IRC connection. You only need to
102 * use this if you wish HOPM to use a particular interface
103 * (virtual host, IP alias, ...) when connecting to the IRC server.
104 * There is another "vhost" setting in the scan {} block below for
105 * the actual portscans. Note that this directive expects an IP address,
106 * not a hostname. Please leave this commented out if you do not
107 * understand what it does, as most people don't need it.
108 */
109 # vhost = "0.0.0.0";
110
111 /*
112 * Nickname for HOPM to use.
113 */
114 nick = "MyHopm";
115
116 /*
117 * Text to appear in the "realname" field of HOPM's /whois output.
118 */
119 realname = "Hybrid Open Proxy Monitor";
120
121 /*
122 * If you don't have an identd running, what username to use.
123 */
124 username = "hopm";
125
126 /*
127 * Hostname (or IP address) of the IRC server which HOPM will monitor
128 * connections on. IPv6 is now supported.
129 */
130 server = "irc.example.org";
131
132 /*
133 * Password used to connect to the IRC server (PASS)
134 */
135 # password = "secret";
136
137 /*
138 * Port of the above server to connect to. This is what HOPM uses to
139 * get onto IRC itself, it is nothing to do with what ports/protocols
140 * are scanned, nor do you need to list every port your ircd listens
141 * on.
142 */
143 port = 6667;
144
145 /*
146 * Defines time in which bot will timeout if no data is received
147 */
148 readtimeout = 15 minutes;
149
150 /*
151 * Interval in how often we try to reconnect to the IRC server
152 */
153 reconnectinterval = 30 seconds;
154
155 /*
156 * Command to execute to identify to NickServ (if your network uses
157 * it). This is the raw IRC command text, and the below example
158 * corresponds to "/msg nickserv identify password" in a client. If
159 * you don't understand, just edit "password" in the line below to be
160 * your HOPM's nick password. Leave commented out if you don't need
161 * to identify to NickServ.
162 */
163 # nickserv = "NS IDENTIFY password";
164
165 /*
166 * The username and password needed for HOPM to oper up.
167 */
168 oper = "hopm operpass";
169
170 /*
171 * Mode string that HOPM needs to set on itself as soon as it opers
172 * up. This needs to include the mode for seeing connection notices,
173 * otherwise HOPM won't scan anyone (that's usually umode +c).
174 */
175 mode = "+c";
176
177 /*
178 * If this is set then HOPM will use it as an /away message as soon as
179 * it connects.
180 */
181 away = "I'm a bot. Your messages will be ignored.";
182
183 /*
184 * Info about channels you wish HOPM to join in order to accept
185 * commands. HOPM will also print messages in these channels every
186 * time it detects a proxy. Only IRC operators can command HOPM to do
187 * anything, but some of the things HOPM reports to these channels
188 * could be considered sensitive, so it's best not to put HOPM into
189 * public channels.
190 */
191 channel {
192 /*
193 * Channel name. Local ("&") channels are supported if your ircd
194 * supports them.
195 */
196 name = "#hopm";
197
198 /*
199 * If HOPM will need to use a key to enter this channel, this is
200 * where you specify it.
201 */
202 # key = "somekey";
203
204 /*
205 * If you use ChanServ then maybe you want to set the channel
206 * invite-only and have each HOPM do "/msg ChanServ invite" to get
207 * itself in. Leave commented if you don't, or if this makes no
208 * sense to you.
209 */
210 # invite = "CS INVITE #hopm";
211 };
212
213 /*
214 * You can define a bunch of channels if you want:
215 *
216 * channel { name = "#other"; }; channel { name= "#channel"; }
217 */
218
219 /*
220 * connregex is a POSIX regular expression used to parse connection
221 * notices from the ircd. The complexity of the expression should
222 * be kept to a minimum.
223 *
224 * Items in order MUST be: nick user host IP
225 *
226 * HOPM will not work with ircds which do not send an IP address in the
227 * connection notice.
228 *
229 * This is fairly complicated stuff, and the consequences of getting
230 * it wrong are the HOPM does not scan anyone. Unless you know
231 * absolutely what you are doing, please just uncomment the example
232 * below that best matches the type of ircd you use.
233 */
234
235 /* bahamut / charybdis / ircd-hybrid / ircd-ratbox / ircu / UnrealIRCd 3.2.x (in HCN mode) */
236 connregex = "\\*\\*\\* Notice -- Client connecting: ([^ ]+) \\(([^@]+)@([^\\)]+)\\) \\[([0-9a-f\\.:]+)\\].*";
237
238 /* ircd-hybrid with far connect notices (user mode +F) to scan clients on remote servers */
239 # connregex = "\\*\\*\\* Notice -- Client connecting.*: ([^ ]+) \\(([^@]+)@([^\\)]+)\\) \\[([0-9a-f\\.:]+)\\].*";
240
241 /* UnrealIRCd 4.0.x */
242 # connregex = "\\*\\*\\* Client connecting: ([^ ]+) \\(([^@]+)@([^\\)]+)\\) \\[([0-9a-f\\.:]+)\\].*";
243
244 /* InspIRCd */
245 # connregex = "\\*\\*\\* .*CONNECT: Client connecting.*: ([^ ]+)!([^@]+)@([^\\)]+) \\(([0-9a-f\\.:]+)\\) \\[.*\\]";
246
247 /* ngIRCd */
248 # connregex = "Client connecting: ([^ ]+) \\(([^@]+)@([^\\)]+)\\) \\[([0-9a-f\\.:]+)\\].*";
249
250 /*
251 * "kline" controls the command used when an open proxy is confirmed.
252 * We suggest applying a temporary (no more than a few hours) KLINE on the host.
253 *
254 * <WARNING>
255 * Make sure if you need to change this string you also change the
256 * kline command for every DNSBL you enable below.
257 *
258 * Also note that some servers do not allow you to include ':' characters
259 * inside the KLINE message (e.g. for a http:// address).
260 *
261 * Users rewriting this message into something that isn't even a valid
262 * IRC command is the single most common cause of support requests and
263 * therefore WE WILL NOT SUPPORT YOU UNLESS YOU USE ONE OF THE EXAMPLE
264 * KLINE COMMANDS BELOW.
265 * </WARNING>
266 *
267 * That said, should you wish to customise this text, several
268 * printf-like placeholders are available:
269 *
270 * %n User's nick
271 * %u User's username
272 * %h User's irc hostname
273 * %i User's IP address
274 * %t Protocol type which has triggered a positive scan
275 */
276
277 /* A KLINE example for bahamut / charybdis / ircd-hybrid / ircd-ratbox */
278 kline = "KLINE 180 *@%i :Open proxy found on your host.";
279
280 /* A KLINE example for InspIRCd */
281 # kline = "KLINE *@%i 3h :Open proxy found on your host.";
282
283 /* A KLINE example for ngIRCd */
284 # kline = "KLINE *@%i 10800 :Open proxy found on your host.";
285
286 /* A GLINE example for ircu */
287 # kline = "GLINE +*@%i 10800 :Open proxy found on your host.";
288
289 /* A ZLINE example for UnrealIRCd */
290 # kline = "ZLINE *@%i 3h :Open proxy found on your host.";
291
292 /*
293 * An AKILL example for services with OperServ. Your HOPM must have permission to
294 * AKILL for this to work!
295 */
296 # kline = "OS AKILL ADD +3h *@%i Open proxy found on your host.";
297
298 /*
299 * Text to send on connection, these can be stacked and will be sent in this order.
300 *
301 * !!! UNREAL USERS PLEASE NOTE !!!
302 * Unreal users will need PROTOCTL HCN to force hybrid connect
303 * notices.
304 *
305 * Yes Unreal users! That means you! That means you need the line
306 * below! See that thing at the start of the line? That's what we
307 * call a comment! Remove it to UNcomment the line.
308 *
309 * Note that this is no longer needed as of UnrealIRCd 4.0.0.
310 */
311 # perform = "PROTOCTL HCN";
312
313 /*
314 * Text to send, via NOTICE, immediately when a new client connects. These can be
315 * stacked and will be sent in this order.
316 */
317 # notice = "You are now being scanned for open proxies. If you have nothing to hide, you have nothing to fear.";
318 };
319
320
321 /*
322 * OPM Block defines blacklists and information required to report new proxies
323 * to a dns blacklist. DNS-based blacklists store IP addresses in a DNS zone
324 * file. There are several blacklist that list IP addresses known to be open
325 * proxies or other forms of IRC abuse. By checking against these blacklists,
326 * HOPMs are able to ban known sources of abuse without completely scanning them.
327 */
328 #opm {
329 /*
330 * Blacklist zones to check IPs against. If you would rather not
331 * trust a remotely managed blacklist, you could set up your own, or
332 * leave these commented out in which case every user will be
333 * scanned. The use of at least one open proxy DNSBL is recommended
334 * however.
335 *
336 * Please check the policies of each blacklist you use to check you
337 * are comfortable with using them to block access to your server
338 * (and that you are allowed to use them).
339 */
340
341
342 /* dnsbl.dronebl.org - http://dronebl.org */
343 # blacklist {
344 /* The DNS name of the blacklist */
345 # name = "dnsbl.dronebl.org";
346
347 /*
348 * Address families that are supported by the blacklist. Default is 'ipv4'.
349 */
350 # address_family = ipv4, ipv6;
351
352 /*
353 * There are only two values that are valid for this
354 * "A record bitmask" and "A record reply"
355 * These options affect how the values specified to reply
356 * below will be interpreted, a bitmask is where the reply
357 * values are 2^n and more than one is added up, a reply is
358 * simply where the last octet of the IP address is that number.
359 * If you are not sure then the values set for dnsbl.dronebl.org
360 * will work without any changes.
361 */
362 # type = "A record reply";
363
364 /*
365 * Kline types not listed in the reply list below.
366 *
367 * For DNSBLs that are not IRC specific and you just wish to kline
368 * certain types this can be enabled/disabled.
369 */
370 # ban_unknown = no;
371
372 /*
373 * The actual values returned by the dnsbl.dronebl.org blacklist as
374 * documented at http://dronebl.org/docs/howtouse
375 */
376 # reply {
377 # 2 = "Sample data used for heuristical analysis";
378 # 3 = "IRC spam drone (litmus/sdbot/fyle)";
379 # 5 = "Bottler (experimental)";
380 # 6 = "Unknown worm or spambot";
381 # 7 = "DDoS drone";
382 # 8 = "Open SOCKS proxy";
383 # 9 = "Open HTTP proxy";
384 # 10 = "ProxyChain";
385 # 11 = "Web Page Proxy";
386 # 12 = "Open DNS Resolver";
387 # 13 = "Automated dictionary attacks";
388 # 14 = "Open WINGATE proxy";
389 # 15 = "Compromised router / gateway";
390 # 16 = "Autorooting worms";
391 # 17 = "Automatically determined botnet IPs (experimental)";
392 # 18 = "DNS/MX type hostname detected on IRC";
393 # 255 = "Uncategorized threat class";
394 # };
395
396 /*
397 * The kline message sent for this specific blacklist, remember to put
398 * the removal method in this.
399 */
400 # kline = "KLINE 180 *@%i :You have a host listed in the DroneBL. For more information, visit http://dronebl.org/lookup_branded?ip=%i&network=Network";
401 # };
402
403
404 /* rbl.efnetrbl.org - https://rbl.efnetrbl.org/ */
405 # blacklist {
406 # name = "rbl.efnetrbl.org";
407 # type = "A record reply";
408 # ban_unknown = no;
409
410 # reply {
411 # 1 = "Open proxy";
412 # 2 = "spamtrap666";
413 # 3 = "spamtrap50";
414 # 4 = "TOR";
415 # 5 = "Drones / Flooding";
416 # };
417
418 # kline = "KLINE 180 *@%i :Blacklisted proxy found. For more information, visit http://rbl.efnetrbl.org/?i=%i";
419 # };
420
421
422
423 /* tor.efnetrbl.org - https://rbl.efnetrbl.org/ */
424 # blacklist {
425 # name = "tor.efnetrbl.org";
426 # type = "A record reply";
427 # ban_unknown = no;
428
429 # reply {
430 # 1 = "TOR";
431 # };
432
433 # kline = "KLINE 180 *@%i :TOR exit node found. For more information, visit http://rbl.efnetrbl.org/?i=%i";
434 # };
435
436 /*
437 * You can report the insecure proxies you find to a DNSBL also!
438 * The remaining directives in this section are only needed if you
439 * intend to do this. Reports are sent by email, one email per IP
440 * address. The format does support multiple addresses in one email,
441 * but we don't know of any servers that are detecting enough insecure
442 * proxies for this to be really necessary.
443 */
444
445 /*
446 * Email address to send reports FROM. If you intend to send reports,
447 * please pick an email address that we can actually send mail to
448 * should we ever need to contact you.
449 */
450 # dnsbl_from = "mybopm@myserver.org";
451
452 /*
453 * Email address to send reports TO.
454 * For example DroneBL:
455 */
456 # dnsbl_to = "bopm-report@dronebl.org";
457
458 /*
459 * Full path to your sendmail binary. Even if your system does not
460 * use sendmail, it probably does have a binary called "sendmail"
461 * present in /usr/sbin or /usr/lib. If you don't set this, no
462 * proxies will be reported.
463 */
464 # sendmail = "/usr/sbin/sendmail";
465 #};
466
467
468 /*
469 * The short explanation:
470 *
471 * This is where you define what ports/protocols to check for. You can have
472 * multiple scanner blocks and then choose which users will get scanned by
473 * which scanners further down.
474 *
475 * The long explanation:
476 *
477 * Scanner defines a virtual scanner. For each user being scanned, a scanner
478 * will use a file descriptor (and subsequent connection) for each protocol.
479 * Once connecting it will negotiate the proxy to connect to
480 * target_ip:target_port (target_ip MUST be an IP address).
481 *
482 * Once connected, any data passed through the proxy will be checked to see if
483 * target_string is contained within that data. If it is the proxy is
484 * considered open. If the connection is closed at any point before
485 * target_string is matched, or if at least max_read bytes are read from the
486 * connection, the negotiation is considered failed.
487 */
488 scanner {
489 /*
490 * Unique name of this scanner. This is used further down in the
491 * user {} blocks to decide which users get affected by which
492 * scanners.
493 */
494 name = "default";
495
496 /*
497 * HTTP CONNECT - very common proxy protocol supported by widely known
498 * software such as Squid and Apache. The most common sort of
499 * insecure proxy and found on a multitude of weird ports too. Offers
500 * transparent two way TCP connections.
501 */
502 protocol = HTTP:80;
503 protocol = HTTP:8080;
504 protocol = HTTP:3128;
505 protocol = HTTP:6588;
506
507 /*
508 * The SSL/TLS variant of HTTP
509 */
510 # protocol = HTTPS:443;
511 # protocol = HTTPS:8443;
512
513 /*
514 * SOCKS4/5 - well known proxy protocols, probably the second most
515 * common for insecure proxies, also offers transparent two way TCP
516 * connections. Fortunately largely confined to port 1080.
517 */
518 protocol = SOCKS4:1080;
519 protocol = SOCKS5:1080;
520
521 /*
522 * Cisco routers with a default password (yes, it really does happen).
523 * Also pretty much anything else that will let you telnet to anywhere
524 * else on the Internet. Fortunately these are always on port 23.
525 */
526 protocol = ROUTER:23;
527
528 /*
529 * WinGate is commercial windows proxy software which is now not so
530 * common, but still to be found, and helpfully presents an interface
531 * that can be used to telnet out, on port 23.
532 */
533 protocol = WINGATE:23;
534
535 /*
536 * Dreambox DVB receivers with a default password allowing
537 * full root access to telnet or install bouncers.
538 */
539 protocol = DREAMBOX:23;
540
541 /*
542 * The HTTP POST protocol, often dismissed when writing the access
543 * controls for proxies, but sadly can still be used to abused.
544 * Offers only the opportunity to send a single block of data, but
545 * enough of them at once can still make for a devastating flood.
546 * Found on the same ports that HTTP CONNECT proxies inhabit.
547 *
548 * Note that if your ircd has "ping cookies" then clients from HTTP
549 * POST proxies cannot actually ever get onto your network anyway. If
550 * you leave the checks in then you'll still find some (because some
551 * people IRC from boxes that run them), but if you use HOPM purely as
552 * a protective measure and you have ping cookies, you need not scan
553 * for HTTP POST.
554 */
555 protocol = HTTPPOST:80;
556
557 /*
558 * The SSL/TLS variant of HTTPPOST
559 */
560 # protocol = HTTPSPOST:443;
561 # protocol = HTTPSPOST:8443;
562
563 /*
564 * IP address this scanner will bind to. Use this if you need your scans to
565 * come FROM a particular interface on the machine you run HOPM from.
566 * If you don't understand what this means, please leave this
567 * commented out, as this is a major source of support queries!
568 */
569 # vhost = "127.0.0.1";
570
571 /*
572 * Maximum file descriptors this scanner can use. Remember that there
573 * will be one FD for each protocol listed above. As this example
574 * scanner has 8 protocols, it requires 8 FDs per user. With a 512 FD
575 * limit, this scanner can be used on 64 users _at the same time_.
576 * That should be adequate for most servers.
577 */
578 fd = 512;
579
580 /*
581 * Maximum data read from a proxy before considering it closed. Don't
582 * set this too high, some people have fun setting up lots of ports
583 * that send endless data to tie up your scanner. 4KB is plenty for
584 * any known proxy.
585 */
586 max_read = 4 kbytes;
587
588 /*
589 * Amount of time before a test is considered timed out.
590 * Again, all but the poorest slowest proxies will be detected within
591 * 30 seconds, and this helps keep resource usage low.
592 */
593 timeout = 30 seconds;
594
595 /*
596 * Target IP to tell the proxy to connect to
597 *
598 * !!! THIS MUST BE CHANGED !!!
599 *
600 * You cannot instruct the proxy to connect to itself! The easiest
601 * thing to do would be to set this to the IP address of your ircd
602 * and then keep the default target_strings.
603 *
604 * Please use an IP address that is publically reachable from anywhere
605 * on the Internet, because you have no way of knowing where the insecure
606 * proxies will be located. Just because you and your HOPM can
607 * connect to your ircd on some private IP address like 192.168.0.1,
608 * does not mean that the insecure proxies out there on the Internet will be
609 * able to. And if they never connect, you will never detect them.
610 *
611 * Remember to change this setting for every scanner you configure.
612 */
613 target_ip = "127.0.0.1";
614
615 /*
616 * Target port to tell the proxy to connect to. This is usually
617 * something like 6667. Basically any client-usable port.
618 */
619 target_port = 6667;
620
621 /*
622 * Target string we check for in the data read back by the scanner.
623 * This should be some string out of the data that your ircd usually
624 * sends on connect. Multiple target strings are allowed.
625 *
626 * NOTE: Try to keep the number of target strings to a minimum. Two
627 * should be fine. One for normal connections and one for throttled
628 * connections. Comment out any others for efficiency.
629 */
630
631 /*
632 * Usually first line sent to client on connection to ircd.
633 * If your ircd supports a more specific line (see below),
634 * using it will reduce false positives.
635 */
636 target_string = ":irc.example.org NOTICE * :*** Looking up your hostname";
637
638 /*
639 * If you try to connect too fast, you'll be throttled by your own
640 * ircd. Here's what a hybrid throttle message looks like:
641 */
642 target_string = "ERROR :Your host is trying to (re)connect too fast -- throttled.";
643 };
644
645
646 scanner {
647 name = "extended";
648
649 protocol = HTTP:81;
650 protocol = HTTP:8000;
651 protocol = HTTP:8001;
652 protocol = HTTP:8081;
653
654 protocol = HTTPPOST:81;
655 protocol = HTTPPOST:6588;
656 protocol = HTTPPOST:4480;
657 protocol = HTTPPOST:8000;
658 protocol = HTTPPOST:8001;
659 protocol = HTTPPOST:8080;
660 protocol = HTTPPOST:8081;
661
662 /*
663 * IRCnet have seen many socks5 on these ports, more than on the
664 * standard ports even.
665 */
666 protocol = SOCKS4:4914;
667 protocol = SOCKS4:6826;
668 protocol = SOCKS4:7198;
669 protocol = SOCKS4:7366;
670 protocol = SOCKS4:9036;
671
672 protocol = SOCKS5:4438;
673 protocol = SOCKS5:5104;
674 protocol = SOCKS5:5113;
675 protocol = SOCKS5:5262;
676 protocol = SOCKS5:5634;
677 protocol = SOCKS5:6552;
678 protocol = SOCKS5:6561;
679 protocol = SOCKS5:7464;
680 protocol = SOCKS5:7810;
681 protocol = SOCKS5:8130;
682 protocol = SOCKS5:8148;
683 protocol = SOCKS5:8520;
684 protocol = SOCKS5:8814;
685 protocol = SOCKS5:9100;
686 protocol = SOCKS5:9186;
687 protocol = SOCKS5:9447;
688 protocol = SOCKS5:9578;
689 protocol = SOCKS5:10000;
690 protocol = SOCKS5:64101;
691
692 /*
693 * These came courtsey of Keith Dunnett from a bunch of public open
694 * proxy lists.
695 */
696 protocol = SOCKS4:29992;
697 protocol = SOCKS4:38884;
698 protocol = SOCKS4:18844;
699 protocol = SOCKS4:17771;
700 protocol = SOCKS4:31121;
701
702 fd = 400;
703
704 /*
705 * If required you can add settings such as target_ip here
706 * they will override the defaults set in the first scanner
707 * for this and subsequent scanners defined in the config file
708 * This affects the following options:
709 * fd, vhost, target_ip, target_port, target_string, timeout and
710 * max_read.
711 */
712 };
713
714 /*
715 * Scanner to detect vulnerable SSH versions that normally exist on hacked
716 * routers and IoT devices. Don't forget to add this scanner to a user block.
717 */
718 scanner {
719 name = "ssh";
720
721 protocol = SSH:22;
722
723 target_string = "SSH-1.99-OpenSSH_5.1";
724 target_string = "SSH-2.0-dropbear_0.51";
725 target_string = "SSH-2.0-dropbear_0.52";
726 target_string = "SSH-2.0-dropbear_0.53.1";
727 target_string = "SSH-2.0-dropbear_2012.55";
728 target_string = "SSH-2.0-dropbear_2013.62";
729 target_string = "SSH-2.0-dropbear_2014.63";
730 target_string = "SSH-2.0-OpenSSH_4.3";
731 target_string = "SSH-2.0-OpenSSH_5.1";
732 target_string = "SSH-2.0-OpenSSH_5.5p1";
733 target_string = "SSH-2.0-ROSSSH";
734 target_string = "SSH-2.0-SSH_Server";
735 };
736
737
738 /*
739 * User blocks define what scanners will be used to scan which hostmasks.
740 * When a user connects they will be scanned on every scanner {} (above)
741 * that matches their host.
742 */
743 user {
744 /*
745 * Users matching this host mask will be scanned with all the
746 * protocols in the scanner named.
747 */
748 mask = "*!*@*";
749 scanner = "default";
750 };
751
752 user {
753 /*
754 * Connections without ident will match on a vast number of connections
755 * very few proxies run ident though
756 */
757 # mask = "*!~*@*";
758 mask = "*!squid@*";
759 mask = "*!nobody@*";
760 mask = "*!www-data@*";
761 mask = "*!cache@*";
762 mask = "*!CacheFlowS@*";
763 mask = "*!*@*www*";
764 mask = "*!*@*proxy*";
765 mask = "*!*@*cache*";
766
767 scanner = "extended";
768 };
769
770
771 /*
772 * Exempt hosts matching certain strings from any form of scanning or dnsbl.
773 * HOPM will check each string against both the hostname and the IP address of
774 * the user.
775 *
776 * There are very few valid reasons to actually use "exempt". HOPM should
777 * never get false positives, and we would like to know very much if it does.
778 * One possible scenario is that the machine HOPM runs from is specifically
779 * authorized to use certain hosts as proxies, and users from those hosts use
780 * your network. In this case, without exempt, HOPM will scan these hosts,
781 * find itself able to use them as proxies, and ban them.
782 */
783 exempt {
784 mask = "*!*@127.0.0.1";
785 };

Properties

Name Value
svn:eol-style native
svn:keywords Id