https proxy encrypted
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1081
HTTP Proxy Client 0.8.5
HTTP Proxy Client is a set of libraries and scripts that provide transparent access to Internet. more>>
HTTP Proxy Client is the small set of libraries and scripts, which provides transparent access to Internet via HTTP proxy for programs, which uses TCP/IP for communication.
The list of programs includes: telnet, ftp, licq, cvs, smth else? Project implements dynamic library, that can be preloaded before program run.
The library substitutes some system calls (connect(), gethostbyaddr(), gethostbyname()), with calls, which makes TCP/IP connection through HTTP proxy. This allows client programs behind HTTP proxy work with Internet without limitations.
At the moment tested on i386 Linux, i386/sparc Solaris.
Enhancements:
- While using dotted address, applications will attempt to connect regardless DNS lookup result.
<<lessThe list of programs includes: telnet, ftp, licq, cvs, smth else? Project implements dynamic library, that can be preloaded before program run.
The library substitutes some system calls (connect(), gethostbyaddr(), gethostbyname()), with calls, which makes TCP/IP connection through HTTP proxy. This allows client programs behind HTTP proxy work with Internet without limitations.
At the moment tested on i386 Linux, i386/sparc Solaris.
Enhancements:
- While using dotted address, applications will attempt to connect regardless DNS lookup result.
Download (0.21MB)
Added: 2005-09-13 License: GPL (GNU General Public License) Price:
1510 downloads
Bypass Proxy Client 0.78
Bypass Proxy Client is the complete network privacy tool. more>>
Bypass Proxy Client is the complete network privacy tool. It ensures absolute privacy wherever you maybe, preventing would-be snoopers from monitoring your surfing, email, or chatting activity. You can bypass blocking filters, firewalls, and proxies. Surf, chat, read news boards, and get all your email at work, on campus (or in regions/areas that may block controversial websites).
Main features:
- Surf the internet using your own virtual network across the web.
-
- Anonymously surf news groups, chat rooms, and web sites!
-
- Protect your Kazaa Identity; Guard against IP tracing -- the no. 1 method
- used by the RIAA to spy on users of file shares (Kazaa, BearShare, etc.)
-
- Prevent corporate networks from eavesdropping and viewing your personal information!
-
- Keep your email and other personal documents private.
-
- Regain access to sites that were previously blocked or filtered. Chat with friends online without concerns about eavesdropping.
<<lessMain features:
- Surf the internet using your own virtual network across the web.
-
- Anonymously surf news groups, chat rooms, and web sites!
-
- Protect your Kazaa Identity; Guard against IP tracing -- the no. 1 method
- used by the RIAA to spy on users of file shares (Kazaa, BearShare, etc.)
-
- Prevent corporate networks from eavesdropping and viewing your personal information!
-
- Keep your email and other personal documents private.
-
- Regain access to sites that were previously blocked or filtered. Chat with friends online without concerns about eavesdropping.
Download (28.7MB)
Added: 2006-06-23 License: Freeware Price:
5338 downloads
HTTP Anti Virus Proxy 0.86
HTTP Anti Virus Proxy is a proxy with a ClamAV anti-virus scanner. more>>
HAVP (HTTP Antivirus Proxy) is a proxy with a ClamAV anti-virus scanner. HTTP Anti Virus Proxy aims are continuous, non-blocking downloads and smooth scanning of dynamic and password protected HTTP traffic.
Havp antivirus proxy has a parent and transparent proxy mode. It can be used with squid or standalone.
Main features:
- HTTP Antivirus proxy
- Scans complete incomming traffic
- Nonblocking downloads
- Smooth scanning of dynamic and password protected traffic
- Can used with squid or other proxy
- Parent proxy support
- Transparent proxy support
- Logfile
- Process change to defined user and group
- Daemon
- Use Clamav (GPL antivirus)
- Operating System: Linux
- Written in C++
- Released under GPL
Enhancements:
- Experimental support was added for chunked Transfer-Encoding, which fixes some broken sites.
- The IGNOREVIRUS configuration directive was added for whitelisting virus names.
- The CLAMBLOCKBROKEN configuration directive was added.
- Detection with AVG was improved.
- HAVP is killed if database reloading fails for Library Scanner.
- The URL is logged when a crashed scanner process is detected.
- The build system updated, adding the --prefix, --sbindir, --sysconfdir, and --localstatedir options.
<<lessHavp antivirus proxy has a parent and transparent proxy mode. It can be used with squid or standalone.
Main features:
- HTTP Antivirus proxy
- Scans complete incomming traffic
- Nonblocking downloads
- Smooth scanning of dynamic and password protected traffic
- Can used with squid or other proxy
- Parent proxy support
- Transparent proxy support
- Logfile
- Process change to defined user and group
- Daemon
- Use Clamav (GPL antivirus)
- Operating System: Linux
- Written in C++
- Released under GPL
Enhancements:
- Experimental support was added for chunked Transfer-Encoding, which fixes some broken sites.
- The IGNOREVIRUS configuration directive was added for whitelisting virus names.
- The CLAMBLOCKBROKEN configuration directive was added.
- Detection with AVG was improved.
- HAVP is killed if database reloading fails for Library Scanner.
- The URL is logged when a crashed scanner process is detected.
- The build system updated, adding the --prefix, --sbindir, --sysconfdir, and --localstatedir options.
Download (0.53MB)
Added: 2007-04-17 License: GPL (GNU General Public License) Price:
932 downloads
Data::Encrypted 0.07
Data::Encrypted is a Perl module to transparently store encrypted data via RSA. more>>
Data::Encrypted is a Perl module to transparently store encrypted data via RSA.
SYNOPSIS
# functional interface:
use Data::Encrypted file => "./.$0-encrypted-data", qw(encrypted);
# note: login and password are not *really* the login and
# password values, only the desired prompt!
my $login = encrypted(login);
my $password = encrypted(password);
# script continues, connecting to some secure resource (database,
# website, etc).
__END__
# alternative, OO interface:
use Data::Encrypted;
my $enc = new Data::Encrypted file => "./.$0-encrypted-data";
my $login = $enc->encrypted(login);
my $password = $enc->encrypted(password);
$enc->finished(); # close and release lock on storage file
# script continues, connecting to some secure resource (database,
# website, etc).
__END__
[ then, back at the command line: ]
% myscript.pl
Data::Encrypted value for login not found, please enter: *****
Data::Encrypted value for password not found, please enter: ********
[ script merrily continues ... ]
% myscript.pl
[ script merrily continues, no prompting this time ... ]
Often when dealing with external resources (database engines, ftp, telnet, websites, etc), your Perl script must supply a password, or other sensitive data, to the other system. This requires you to either continually prompt the user for the data, or to store the information (in plaintext) within your script. Youd rather not have to remember the connection details to all your different resources, so youd like to store the data somewhere. And if you share your script with anyone (as any good open-source developer would), youd rather not have your password or other sensitive information floating around.
Data::Encrypted attempts to fill this small void with a simple, yet functional solution to this common predicament. It works by prompting you (via Term::ReadPassword) once for each required value, but only does so the first time you run your script; thereafter, the data is stored encrypted in a secondary file. Subsequent executions of your script use the encrypted data directly, if possible; otherwise it again prompts for the data. Currently, Data::Encrypted achieves encryption via an RSA public-key cryptosystem implemented by Crypt::RSA, using (by default) your own SSH1 public and private keys.
<<lessSYNOPSIS
# functional interface:
use Data::Encrypted file => "./.$0-encrypted-data", qw(encrypted);
# note: login and password are not *really* the login and
# password values, only the desired prompt!
my $login = encrypted(login);
my $password = encrypted(password);
# script continues, connecting to some secure resource (database,
# website, etc).
__END__
# alternative, OO interface:
use Data::Encrypted;
my $enc = new Data::Encrypted file => "./.$0-encrypted-data";
my $login = $enc->encrypted(login);
my $password = $enc->encrypted(password);
$enc->finished(); # close and release lock on storage file
# script continues, connecting to some secure resource (database,
# website, etc).
__END__
[ then, back at the command line: ]
% myscript.pl
Data::Encrypted value for login not found, please enter: *****
Data::Encrypted value for password not found, please enter: ********
[ script merrily continues ... ]
% myscript.pl
[ script merrily continues, no prompting this time ... ]
Often when dealing with external resources (database engines, ftp, telnet, websites, etc), your Perl script must supply a password, or other sensitive data, to the other system. This requires you to either continually prompt the user for the data, or to store the information (in plaintext) within your script. Youd rather not have to remember the connection details to all your different resources, so youd like to store the data somewhere. And if you share your script with anyone (as any good open-source developer would), youd rather not have your password or other sensitive information floating around.
Data::Encrypted attempts to fill this small void with a simple, yet functional solution to this common predicament. It works by prompting you (via Term::ReadPassword) once for each required value, but only does so the first time you run your script; thereafter, the data is stored encrypted in a secondary file. Subsequent executions of your script use the encrypted data directly, if possible; otherwise it again prompts for the data. Currently, Data::Encrypted achieves encryption via an RSA public-key cryptosystem implemented by Crypt::RSA, using (by default) your own SSH1 public and private keys.
Download (0.007MB)
Added: 2006-10-04 License: Perl Artistic License Price:
1117 downloads
Whois Proxy 1.3.4
Whois Proxy provides a CGI or command line whois proxy tool. more>>
Whois Proxy provides a CGI or command line whois proxy tool.
Whois Proxy is a Perl whois tool for looking up the owners, technical contacts, abuse desk, IP address, NIC handle, or ASN of any domain on the internet.
A complete rewrite of the GeekTools whois proxy, it also runs either as a Web application or on the command line but has a few more features.
The Web interface is validated strict XHTML and CSS2.
<<lessWhois Proxy is a Perl whois tool for looking up the owners, technical contacts, abuse desk, IP address, NIC handle, or ASN of any domain on the internet.
A complete rewrite of the GeekTools whois proxy, it also runs either as a Web application or on the command line but has a few more features.
The Web interface is validated strict XHTML and CSS2.
Download (0.081MB)
Added: 2007-03-11 License: GPL (GNU General Public License) Price:
965 downloads
Anon Proxy Server 0.99
Anon Proxy Server is a fast http, https, socks caching proxy server. more>>
Anon Proxy Server is a fast http, https, socks caching proxy server. Easy web based configuration, optional p2p anonymous mode.
Main features:
- Easy Configuration - Web based, no editing text configuration files.
- Memory - No big databases are kept in memory, no matter how large the cache is, memory usage will only increase when more users access it at the same time.
- Speed - To see how much cpu the proxy uses, run top or task manager. Then open multiple windows and hit reload continously, on my computer I usually run out of bandwidth before it goes near 3-5% cpu usage.
- Shared Cache - Can be used as a general cache for all users of a computer/network instead of one cache per profile.
- Automatic config - Auto generates the .pac file for automatic proxy settings, no more updating in the do not use proxy section of individual users browsers.
- Anonymous P2P proxy - Joining the anonymous proxy network will allow you to use other peoples proxys for browsing and allow them to use yours.
- SOCKS - Supports enough of SOCKS to run ftp, most Instant messengers, irc, limewire, etc.
- User authentication - Supports external user authentication.
Enhancements:
- The program now checks for errors in access configuration.
- Variable timeout values were added.
- Log rotation was fixed.
- Occasional crashes on a bad URL were fixed.
- The auto configuration .pac file was fixed, so it should work even if the proxys URL was not set properly.
- Anon proxy defaults to 3 keys now for more reliability.
<<lessMain features:
- Easy Configuration - Web based, no editing text configuration files.
- Memory - No big databases are kept in memory, no matter how large the cache is, memory usage will only increase when more users access it at the same time.
- Speed - To see how much cpu the proxy uses, run top or task manager. Then open multiple windows and hit reload continously, on my computer I usually run out of bandwidth before it goes near 3-5% cpu usage.
- Shared Cache - Can be used as a general cache for all users of a computer/network instead of one cache per profile.
- Automatic config - Auto generates the .pac file for automatic proxy settings, no more updating in the do not use proxy section of individual users browsers.
- Anonymous P2P proxy - Joining the anonymous proxy network will allow you to use other peoples proxys for browsing and allow them to use yours.
- SOCKS - Supports enough of SOCKS to run ftp, most Instant messengers, irc, limewire, etc.
- User authentication - Supports external user authentication.
Enhancements:
- The program now checks for errors in access configuration.
- Variable timeout values were added.
- Log rotation was fixed.
- Occasional crashes on a bad URL were fixed.
- The auto configuration .pac file was fixed, so it should work even if the proxys URL was not set properly.
- Anon proxy defaults to 3 keys now for more reliability.
Download (0.65MB)
Added: 2006-12-14 License: zlib/libpng License Price:
1048 downloads
Proxy Detector 0.1
Proxy Detector is a PHP class that can detect HTTP requests via proxy. more>>
Proxy Detector is a PHP class that can detect HTTP requests via proxy. This class can detect if a visitor uses a proxy server by scanning the headers returned by the user client.
When the user uses a proxy server, most of the proxy servers alter the header. The header is returned to PHP in the array $_SERVER.
Enhancements:
- This is the first release of the class and implementation example.
<<lessWhen the user uses a proxy server, most of the proxy servers alter the header. The header is returned to PHP in the array $_SERVER.
Enhancements:
- This is the first release of the class and implementation example.
Download (0.002MB)
Added: 2006-09-21 License: GPL (GNU General Public License) Price:
1146 downloads
FSP Proxy 2.8.1 Beta 24
FSP Proxy provides a proxy server for FSP to HTTP protocol translation. more>>
FSP Proxy provides a proxy server for FSP to HTTP protocol translation.
FSP Proxy is a proxy server for FSP to HTTP/1.0 protocol translation. It also accepts gopher:// URLs as an alias for fsp://. You can set it up as a gopher proxy in your browser, and easily access FSP sites.
This proxy supports HTTP/1.1 on output side and FSP v2 on input side. Subrange byte requests are supported, resume works nicely. Simply FSP v2 over HTTP/1.1. This proxy do not caches anything.
This proxy makes playing with FSP very easy for newcommers, there is no need to learn classic fsp command line interface tools. Everybody who can handle downloads in browser, can now play with FSP sites available through Internet.
Enhancements:
- use getopt from stdio.h instead of getopt.h in fspscan.c
- fspscan now compiles on AIX and other OS without glibc (hoaxter)
- !! fixed fatal bug from b23. Server sends large packets to clients if
- client request has not prefered reply size inside. This confuses
- all old fsp clients.
- common/strdup.c removed
- bsd_src/function.c bcopy -> memmove
- removed STDC_HEADER checks, drop support for pre-ANSI compilers
- started work on alternate SCons based build system
- fspd: use urandom, not random -> avoid hangs on Lin suck 2.6
- build system converted to SCons
- !! fixed directory listing bug in client library introduced in beta23
- improvements to security of FSP clients
- seq. numbers are now randomized
- seed random number generator in fsp clients
- check cmd in received packets
- check pos in received packets
<<lessFSP Proxy is a proxy server for FSP to HTTP/1.0 protocol translation. It also accepts gopher:// URLs as an alias for fsp://. You can set it up as a gopher proxy in your browser, and easily access FSP sites.
This proxy supports HTTP/1.1 on output side and FSP v2 on input side. Subrange byte requests are supported, resume works nicely. Simply FSP v2 over HTTP/1.1. This proxy do not caches anything.
This proxy makes playing with FSP very easy for newcommers, there is no need to learn classic fsp command line interface tools. Everybody who can handle downloads in browser, can now play with FSP sites available through Internet.
Enhancements:
- use getopt from stdio.h instead of getopt.h in fspscan.c
- fspscan now compiles on AIX and other OS without glibc (hoaxter)
- !! fixed fatal bug from b23. Server sends large packets to clients if
- client request has not prefered reply size inside. This confuses
- all old fsp clients.
- common/strdup.c removed
- bsd_src/function.c bcopy -> memmove
- removed STDC_HEADER checks, drop support for pre-ANSI compilers
- started work on alternate SCons based build system
- fspd: use urandom, not random -> avoid hangs on Lin suck 2.6
- build system converted to SCons
- !! fixed directory listing bug in client library introduced in beta23
- improvements to security of FSP clients
- seq. numbers are now randomized
- seed random number generator in fsp clients
- check cmd in received packets
- check pos in received packets
Download (MB)
Added: 2007-04-30 License: MIT/X Consortium License Price:
907 downloads
Ftp.proxy 1.2.3
ftp.proxy is an application level gateway for FTP. more>>
ftp.proxy is an application level gateway for FTP. It sits between a client and a server forwarding command and data streams supporting a subset of the file transfer protocol as described in RFC 959.
But, beside this basic function which makes the program useful on firewall or masqueraders it offers fixing the FTP server (e.g. for connections into a protected LAN) and proxy authentication.
Main features:
- ftp.proxy offers external access control programs (ACP), that is an external program decides if a user can use the proxy service or not. This decision can be made on username, host name, day of time etc.
- Since version 1.0.1 ftp.proxy supports also command control programs. Similar to ACPs the CCPs permit or deny access to certain FTP commands on the server, e.g. its possible to allow a user to get files but to deny any kind of uploads.
<<lessBut, beside this basic function which makes the program useful on firewall or masqueraders it offers fixing the FTP server (e.g. for connections into a protected LAN) and proxy authentication.
Main features:
- ftp.proxy offers external access control programs (ACP), that is an external program decides if a user can use the proxy service or not. This decision can be made on username, host name, day of time etc.
- Since version 1.0.1 ftp.proxy supports also command control programs. Similar to ACPs the CCPs permit or deny access to certain FTP commands on the server, e.g. its possible to allow a user to get files but to deny any kind of uploads.
Download (0.080MB)
Added: 2006-06-26 License: GPL (GNU General Public License) Price:
1215 downloads
Frickin PPTP Proxy 2.0 Beta 2
Frickin PPTP Proxy is a fast PPTP proxy for any BSD system with the OpenBSD packet filter installed. more>>
Frickin PPTP Proxy is a fast PPTP proxy for any BSD system with the OpenBSD packet filter installed.
It handles bi-directional tunnels transparently and can be chained from one proxy to another over several servers.
Enhancements:
- This release fixes an endian issue with echo IDs that made the proxy unusable for a majority of users.
- There is additional information regarding a pf scrub issue in the documentation.
<<lessIt handles bi-directional tunnels transparently and can be chained from one proxy to another over several servers.
Enhancements:
- This release fixes an endian issue with echo IDs that made the proxy unusable for a majority of users.
- There is additional information regarding a pf scrub issue in the documentation.
Download (0.012MB)
Added: 2007-01-19 License: GPL (GNU General Public License) Price:
1015 downloads
encrypt 0.9
encrypt turns any plaintext word into an encrypted string in a variety of ways, including reading a random word from a file. more>>
encrypt turns any plaintext word into an encrypted string in a variety of ways, including reading a random word from a file. It can be useful for creating passwords for .htpasswd files for webservers. Its also very useful for generating random passwords out of a cronjob.
The program has also and a man page.
But most people will use it like this:
encrypt -s dZ mypassword
dZVuMBk8/bQsk
mypassword
Or you can have it generate a random password for you:
encrypt -r 8
lHtmBvBVUSWt2
WjM0GUf
Check out the man page man encrypt for more information and examples.
Any user will be able to use encrypt in their own userspace. You can also run make install as root and it will put the program, man page and config file in the locations specified in the Makefile. You may want to run make test first to make sure you have everything that is needed to run the program first.
<<lessThe program has also and a man page.
But most people will use it like this:
encrypt -s dZ mypassword
dZVuMBk8/bQsk
mypassword
Or you can have it generate a random password for you:
encrypt -r 8
lHtmBvBVUSWt2
WjM0GUf
Check out the man page man encrypt for more information and examples.
Any user will be able to use encrypt in their own userspace. You can also run make install as root and it will put the program, man page and config file in the locations specified in the Makefile. You may want to run make test first to make sure you have everything that is needed to run the program first.
Download (0.049MB)
Added: 2007-08-05 License: GPL (GNU General Public License) Price:
912 downloads
proxy hunter customed 1.2
Phc is a program to validate free proxies for LAN users. more>>
Phc is a program to validate free proxies for LAN users to reach the Internet by bypassing ISP proxies with strict limits. proxy hunter customed can be customized to change headers in test requests sent to free proxies, such as User_Agent.
You can also customize it with your own checksite, checksite port, or checksite key, switch between the CONNECT and GET method, etc., to test and filter free proxies.
It can be used to validate free socks5 proxies with a connect command or free HTTP proxies with a GET or CONNECT method. It can validate free proxies with a TCP tunnel.
The tunnel can be a free HTTP proxy, a free socks5 proxy, an HTTP proxy with basic authentication, or a socks5 proxy with username/password authentication.
Enhancements:
- Support for socks4 proxy(connect).
- Full command line options.
- The configuration file can also be appointed by command line options.
- Output file and input file with full path can be set by the user.
<<lessYou can also customize it with your own checksite, checksite port, or checksite key, switch between the CONNECT and GET method, etc., to test and filter free proxies.
It can be used to validate free socks5 proxies with a connect command or free HTTP proxies with a GET or CONNECT method. It can validate free proxies with a TCP tunnel.
The tunnel can be a free HTTP proxy, a free socks5 proxy, an HTTP proxy with basic authentication, or a socks5 proxy with username/password authentication.
Enhancements:
- Support for socks4 proxy(connect).
- Full command line options.
- The configuration file can also be appointed by command line options.
- Output file and input file with full path can be set by the user.
Download (0.42MB)
Added: 2006-07-12 License: GPL (GNU General Public License) Price:
1223 downloads
IMAP Proxy 1.2.4
IMAP Proxy server is a caching IMAP proxy server. more>>
IMAP Proxy server is a caching IMAP proxy server. It was written to compensate for webmail clients that are unable to maintain persistent connections to an IMAP server. Most webmail clients need to log in to an IMAP server for nearly every single transaction.
This behaviour can cause tragic performance problems on the IMAP server. imapproxy tries to deal with this problem by leaving server connections open for a short time after a webmail client logs out.
When the webmail client connects again, imapproxy will determine if theres a cached connection available and reuse it if possible.
How does imapproxy keep track of which server connection is for which user?
Upon the first successful login to the real IMAP server (through the proxy), imapproxy fills in a little record that contains the username, an md5 digital signature of the password and the server socket descriptor thats being used.
After you log out and then log back in again, imapproxy just has to find a record that matches your username and password. These records are stored in a hash table (with the username being the hash key) in memory, so the lookups are pretty fast.
Can IMAP Proxy support multiple backend servers?
If you want IMAP Proxy to be able to proxy to multiple backend IMAP servers, you can run multiple instances of IMAP Proxy and make sure each instance is looking at a different configuration file.
Before you do this, take a look at perdition which appears to have been designed with this specific task in mind.
<<lessThis behaviour can cause tragic performance problems on the IMAP server. imapproxy tries to deal with this problem by leaving server connections open for a short time after a webmail client logs out.
When the webmail client connects again, imapproxy will determine if theres a cached connection available and reuse it if possible.
How does imapproxy keep track of which server connection is for which user?
Upon the first successful login to the real IMAP server (through the proxy), imapproxy fills in a little record that contains the username, an md5 digital signature of the password and the server socket descriptor thats being used.
After you log out and then log back in again, imapproxy just has to find a record that matches your username and password. These records are stored in a hash table (with the username being the hash key) in memory, so the lookups are pretty fast.
Can IMAP Proxy support multiple backend servers?
If you want IMAP Proxy to be able to proxy to multiple backend IMAP servers, you can run multiple instances of IMAP Proxy and make sure each instance is looking at a different configuration file.
Before you do this, take a look at perdition which appears to have been designed with this specific task in mind.
Download (0.13MB)
Added: 2005-10-08 License: GPL (GNU General Public License) Price:
1484 downloads
SPIKE Proxy 1.4.8
Spike Proxy is an open source HTTP proxy for finding security flaws in web sites. more>>
Spike Proxy is an open source HTTP proxy for finding security flaws in web sites.
SPIKE Proxy is part of the Spike Application Testing Suite and supports automated SQL injection detection, web site crawling, login form brute forcing, overflow detection, and directory traversal detection.
To Use:
python spkproxy.py [ optional port argument, 8080 is default ]
Then set up your browser to use that port for both HTTP and
HTTPS proxies.
Then watch the traffic go!
<<lessSPIKE Proxy is part of the Spike Application Testing Suite and supports automated SQL injection detection, web site crawling, login form brute forcing, overflow detection, and directory traversal detection.
To Use:
python spkproxy.py [ optional port argument, 8080 is default ]
Then set up your browser to use that port for both HTTP and
HTTPS proxies.
Then watch the traffic go!
Download (0.61MB)
Added: 2006-03-10 License: Freeware Price:
1341 downloads
Blitzed Open Proxy Monitor 3.1.3
Blitzed Open Proxy Monitor or BOPM, is an open source open proxy monitor. more>>
Blitzed Open Proxy Monitor or BOPM, is an open source open proxy monitor, designed for use with hybrid-based ircds, although it can be used with slight modification on any server which has the ability to show connects to opers and that supports KLINEs.
BOPM is known to work without modification on the following ircds:
- Bahamut (tested with 1.4.28, 1.4.30)
- Hybrid (tested with 2.8/hybrid-5.3p8, ircd-hybrid-6.3 and ircd-hybrid-7)
- ircd-ratbox (tested with > 2.1.8)
- charybdis (tested with > 2.0.0)
- Unreal (tested with 3.1.2 and 3.2)
- Dancer (tested with 1.0.31)
- TR-IRCD
- IRCu
- Ultimate (tested with UltimateIRCd 2.8.8 and 3.0.0.b3) - please note, earlier versions of Ultimate IRCD are not supported
- LiquidIRCd (tested with 1.0.4)
- InspIRCd (known to work with 1.0 and 1.1 version branches - instructions are given here)
Please note that BOPM will not work with older versions of Unreal without modifying Unreal to send the clients IP address in a connection notice. Patches are also available for download. On the latest versions of Unreal this is no longer needed. Remember for all Unreal versions you must set the perform line correctly (documented in the config file).
How does it work?
When a client connects to the IRC server, BOPM scans the client for open proxies. It then determines whether they are really open by using them to connect back to the server.
How does BOPM improve on first generation scanners (wgmon, tcm, oomon)?
It extends them by adding support for SOCKS4, SOCKS5, WinGate, HTTP proxies, insecure Cisco routers, simultaneous connections, and a more scalable model (written in C). BOPM also has support for a DNS blacklist, similar to MAPS RBL+ or Visi RSL
BOPM is in use without issue on servers receiving over 400 connections per minute during normal real-world operation (as in, regular client load excluding bursts and attacks). That is 7 user connections per second, enough for even the largest of IRC servers.
Additionally, BOPM contains the ability to match hosts against a DNS blacklist such as DroneBL or your own custom list, it can also submit new proxies that are found via email if the list accepts them.
Enhancements:
- This version was fixed to work with GCC 4 and various other cleanups.
<<lessBOPM is known to work without modification on the following ircds:
- Bahamut (tested with 1.4.28, 1.4.30)
- Hybrid (tested with 2.8/hybrid-5.3p8, ircd-hybrid-6.3 and ircd-hybrid-7)
- ircd-ratbox (tested with > 2.1.8)
- charybdis (tested with > 2.0.0)
- Unreal (tested with 3.1.2 and 3.2)
- Dancer (tested with 1.0.31)
- TR-IRCD
- IRCu
- Ultimate (tested with UltimateIRCd 2.8.8 and 3.0.0.b3) - please note, earlier versions of Ultimate IRCD are not supported
- LiquidIRCd (tested with 1.0.4)
- InspIRCd (known to work with 1.0 and 1.1 version branches - instructions are given here)
Please note that BOPM will not work with older versions of Unreal without modifying Unreal to send the clients IP address in a connection notice. Patches are also available for download. On the latest versions of Unreal this is no longer needed. Remember for all Unreal versions you must set the perform line correctly (documented in the config file).
How does it work?
When a client connects to the IRC server, BOPM scans the client for open proxies. It then determines whether they are really open by using them to connect back to the server.
How does BOPM improve on first generation scanners (wgmon, tcm, oomon)?
It extends them by adding support for SOCKS4, SOCKS5, WinGate, HTTP proxies, insecure Cisco routers, simultaneous connections, and a more scalable model (written in C). BOPM also has support for a DNS blacklist, similar to MAPS RBL+ or Visi RSL
BOPM is in use without issue on servers receiving over 400 connections per minute during normal real-world operation (as in, regular client load excluding bursts and attacks). That is 7 user connections per second, enough for even the largest of IRC servers.
Additionally, BOPM contains the ability to match hosts against a DNS blacklist such as DroneBL or your own custom list, it can also submit new proxies that are found via email if the list accepts them.
Enhancements:
- This version was fixed to work with GCC 4 and various other cleanups.
Download (0.80MB)
Added: 2007-05-17 License: GPL (GNU General Public License) Price:
902 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above https proxy encrypted search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed