|
|
| Author |
Message |
Exedore none

Joined: 02 Oct 2008 Posts: 3
|
Posted: Oct 02, 2008 8:29am Post subject: Help with BOPM block conf... |
|
|
In here:
| Code: | /*
* SOCKS4/5 - well known proxy protocols, probably the second most
* common for insecure proxies, also offers transparent two way TCP
* connections. Fortunately largely confined to port 1080.
*/
protocol = SOCKS4:1080;
protocol = SOCKS5:1080;
|
Can I add ports?
Like this:
| Code: |
protocol = SOCKS4:1080;
protocol = SOCKS5:1080;
protocol = SOCKS4:1098;
protocol = SOCKS5:53755;
protocol = SOCKS4:3525;
protocol = SOCKS5:62522;
protocol = SOCKS4:23455;
protocol = SOCKS5:60436;
protocol = SOCKS4:44366;
protocol = SOCKS5:10007;
|
Thank you |
|
| Back to top |
|
 |
zeke Idler

Joined: 04 Oct 2003 Posts: 321
|
Posted: Oct 02, 2008 9:54am Post subject: |
|
|
Yes, just keep in mind that for every port added, the longer the scan will take, and may impact the number of total simultaneous scans that can be performed.
For most small networks this isn't a major issue - if you regularly scan lots of people in short amounts of time you may want to look at the file descriptors section in the docs:
| Quote: | /* Maximum file descriptors this scanner can use. Remember that there
* will be one FD for each protocol listed above. As this example
* scanner has 8 protocols, it requires 8 FDs per user. With a 512 FD
* limit, this scanner can be used on 64 users _at the same time_.
* That should be adequate for most servers.
*/ |
That is, for every protocol line in the scanner, it is the number of FD's required per user. |
|
| Back to top |
|
 |
Exedore none

Joined: 02 Oct 2008 Posts: 3
|
Posted: Oct 03, 2008 4:26am Post subject: |
|
|
understood..
Thank you zeke for your help  |
|
| Back to top |
|
 |
maddog906 Lurker

Joined: 08 Mar 2005 Posts: 131 Location: uk
|
Posted: Oct 03, 2008 7:49am Post subject: if you got a spare account |
|
|
if you got a spare account
run two bopm one with blacklisting and the other with ports,
we found that works great,
also look at the bopm website
there a mod for unrealircd &bopm
/* Hybrid / Bahamut / Unreal (in HCN mode) */
connregex = "\\*\\*\\* Notice -- Client connecting.*: ([^ ]+) \\(([^@]+)@([^\\)]+)\\) \\[([0-9\\.]+)\\].*";
they say with this mod you only need one bopm to scan a network where old bopm you needed 1 bopm per server etc 6 bopm for 6 servers etc. |
|
| Back to top |
|
 |
|