Main > Free Download Search >

Free ntlm software for linux

ntlm

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 23
Cntlm 0.33

Cntlm 0.33


Cntlm is an authenticating HTTP proxy intended to help you break free from the chains of the proprietary world... more>>
Cntlm is an authenticating HTTP proxy intended to help you break free from the chains of the proprietary world we all are held prisoners in. You can run and use a free operating system on your computer and honor our noble idea, but you cant hide! Once youre behind the cold steel bars of the corporate proxy server requiring NTLM authentication, your lost.
Here comes Cntlm. It takes the address of your proxy (or proxies) and opens a listening socket, forwarding each request to the proxy (moving in a circular list if the active proxy stops working). Along the way, the forwarded connection is created anew and authenticated or, if available, previously cached connection is reused to achieve higher efficiency and faster responses. When the chain is set up, Cntlm is to be used as the primary proxy. Cntlm also itegrates transparent TCP/IP port forwarding (tunneling) through the parent proxy. Each tunnel opens a new listening socket on the specified local port and forwards all connections to the given host:port behind the parent proxy.
Apparently, the authentication part is similar to NTLMAPS and others, but Cntlm removes many of their shortcomings and inefficiencies. It supports real keep-alive (on both sides) and it caches all authenticated connections for reuse in subsequent requests. It can be restarted without TIME_WAIT delay, uses just a fraction of memory compared to others and by orders of magnitude less CPU. Each thread is completely independent and one cannot block another.
In addition to lower usage of system resources, Cntlm achieves higher throughput.
By caching once opened connections, it acts as an accelerator; instead of 5-way auth handshake for each connection, it transparently removes this requirement, providing direct access most of the time. For example, NTLMAPS doesnt do authentication at once with the initial request - instead, it first connects, sends a probe and disconnects. No sooner than that it connects again and then initiates NTLM handshake. Cntlm also doesnt read the clients complete request including HTTP body into memory, in fact, no traffic is generated except for exchange of headers until the client server connection is fully negotiated. Only then are the request and response bodies multiplexed, directly between client and server sockets. This way, Cntlm avoids most of the TCP/IP overhead of similar proxies. Along with the fact that Cntlm is written in optimized C, it achieves up to twenty times faster responses. The slower the line, the more impact Cntlm has on download speeds.
Memory management audits and profiling are inherent part of the development process. Each change in the code is audited using Valgrind, which acts as a virtual CPU and checks behaviour of each instruction of the application being profiled. Using this marvelous tool, you can uncloak any imbalance in malloc/free calls (double frees or leaks), operations with uninitialized memory, access outside of properly allocated memory and oh so much more.
Enhancements:
- The program automatically and temporarily switches to the NTLM-to-basic mode if the configuration file credentials fail.
- The Debian directory was moved, and packages are created the Debian way.
<<less
Download (0.037MB)
Added: 2007-07-18 License: GPL (GNU General Public License) Price:
834 downloads
mod_ntlm 0.4

mod_ntlm 0.4


mod_ntlm is NTLM authentication for Apache / Unix. more>>
mod_ntlm is NTLM authentication for Apache / Unix.
Installation:
You have to be root to compile and install mod_ntlm.c successfully. You need a ready-to-run apache distribution installed. Go to the source distribution directory of mod_ntlm and enter:
make install && make restart
The Makefile is using apxs to compile and install mod_ntlm. Certain versions of apxs are known to fail unter certain versions of SuSE Linux.
It works fine for me with SuSE Linux 6.3 and Solaris 2.6, no other platforms have been tested y
Version restrictions:
- Basic authentication against SMB server is not supported. There are enough modules that do this and you need https to make it safe.
- Internet Explorer 3.0 (broken keepalive) is not supported, its about time to get a new browsers. Those users should have taken their computers away for using year old software.
- You can produce a problem by pressing reload fast and often. The connection is forced into reset each time, and sometimes Internet Explorer is sending a msg3 to an apache process that didnt send the msg1 yet. Im not sure weather this is an apache or Linux or IE problem. It could be resolved by caching credentials, which is unsafe and involves neat things like file locking and mmap().
Enhancements:
- Apache 1.3.x
<<less
Download (0.040MB)
Added: 2006-05-02 License: BSD License Price:
1272 downloads
Apache2::AuthenNTLM 0.02

Apache2::AuthenNTLM 0.02


Apache2::AuthenNTLM is a Perl module to perform Microsoft NTLM and Basic User Authentication. more>>
Apache2::AuthenNTLM is a Perl module to perform Microsoft NTLM and Basic User Authentication.

SYNOPSIS

< Location / >
PerlAuthenHandler Apache2::AuthenNTLM
AuthType ntlm,basic
AuthName test
require valid-user

# domain pdc bdc
PerlAddVar ntdomain "name_domain1 name_of_pdc1"
PerlAddVar ntdomain "other_domain pdc_for_domain bdc_for_domain"

PerlSetVar defaultdomain wingr1
PerlSetVar splitdomainprefix 1
PerlSetVar ntlmdebug 1
< /Location >

The purpose of this module is to perform a user authentication via Microsofts NTLM protocol. This protocol is supported by all versions of the Internet Explorer and is mainly useful for intranets. Depending on your preferences setting IE will supply your windows logon credentials to the web server when the server asks for NTLM authentication. This saves the user to type in his/her password again.

The NTLM protocol performs a challenge/response to exchange a random number (nonce) and get back a md4 hash, which is built from the users password and the nonce. This makes sure that no password goes over the wire in plain text.

The main advantage of the Perl implementation is, that it can be easily extended to verify the user/password against other sources than a windows domain controller. The defaultf implementation is to go to the domain controller for the given domain and verify the user. If you want to verify the user against another source, you can inherit from Apache2::AuthenNTLM and override its methods.

To support users that arent using Internet Explorer, Apache2::AuthenNTLM can also perform basic authentication depending on its configuration.

IMPORTANT: NTLM authentification works only when KeepAlive is on. (If you have set ntlmdebug 2, and see that there is no return message (type 3), check your httpd.conf file for "KeepAlive Off". If KeepAlive Off, then change it to KeepAlive On, restart Apache, and test again).

<<less
Download (0.050MB)
Added: 2007-03-19 License: Perl Artistic License Price:
955 downloads
NTLM authentication library 0.3.10

NTLM authentication library 0.3.10


libntlm is a library that implement Microsofts NTLM authentication. more>>
NTLM authentication library (libntlm) is a library that implement Microsofts NTLM authentication.
However, the packaging of libntlm lacked certain things, such as having build problems, lacking shared library support, lacking autoconf macro for use in other applications, lacking pkg-config support, and more. So this page distributes an improved version of the library; called Libntlm.
Libntlm is licensed under the GNU Lesser General Public License.
Projects using Libntlm include GNU SASL.
Enhancements:
- This release adds new APIs to access the SMBencrypt and SMBNTencrypt functions.
- The library is now linked with -no-undefined to enable building a Windows DLL.
<<less
Download (0.34MB)
Added: 2006-03-24 License: LGPL (GNU Lesser General Public License) Price:
1323 downloads
NTLM Authorization Proxy Server 0.9.9.0.1

NTLM Authorization Proxy Server 0.9.9.0.1


NTLM Authorization Proxy Server is a proxy software that allows you to authenticate via an MS Proxy Server. more>>
NTLM Authorization Proxy Server is a proxy software that allows you to authenticate via an MS Proxy Server using the proprietary NTLM protocol.
Since version 0.9.5 APS has an ability to behave as a standalone proxy server and authenticate http clients at web servers using NTLM method.
It can change arbitrary values in your clients request header so that those requests will look like they were created by MS IE. It is written in Python v1.5.2 language.
Main features:
- supports NTLM authentication via parent proxy server (Error 407 Proxy Authentication Required);
- supports NTLM authentication at web servers (Error 401 Access Denied/Unauthorized);
- supports translation of NTLM scheme to standard "Basic" authentication scheme;
- supports the HTTPS CONNECT method for transparent tunnelling through parent proxy server;
- has ability to change arbitrary values in clients request headers;
- supports unlimited number of client connections;
- supports connections from external hosts;
- supports HTTP 1.1 persistent connections;
- stores users credentials in config file or requests password from a console during the start time;
- supports intelligent failure detection and failover between multiple upstream proxies;
Enhancements:
- This release fixes a minor bug with Python 1.5.2 compatibility.
<<less
Download (0.054MB)
Added: 2006-01-27 License: GPL (GNU General Public License) Price:
1377 downloads
libESMTP 1.0.4

libESMTP 1.0.4


libESMTP is an SMTP client which manages posting. more>>
libESMTP is an SMTP client which manages posting (or submission of) electronic mail via a preconfigured Mail Transport Agent (MTA).
libESMTP library may be used as part of a Mail User Agent (MUA) or other program that must be able to post electronic mail but where mail functionality is not that programs primary purpose.
The availability of a reliable lightweight thread-safe SMTP client eases the task of coding for software authors thus improving the quality of the resulting code.
Main features:
- libESMTP supports many SMTP extensions, notably PIPELINING (RFC 2920), DSN (RFC 1891) and SASL authentication (RFC 2554). SMTP AUTH is implemented using a SASL client library integrated into libESMTP. Supported SASL mechanisms include CRAM-MD5 and NTLM.
- libESMTP is also efficient. Because it buffers all network traffic, when used in conjunction with a pipelining SMTP server libESMTP significantly increases network performance, especially on slow connections and those with high latency. Even without a pipelining server libESMTP offers significantly better performance than would be expected with a simple client.
- libESMTP is not designed to be used as part of a program that implements a Mail Transport Agent. This is not because the code is unsuitable for use in an MTA, in fact the protocol engine is significantly better than those in many MTAs. Rather, by eliminating the need for MX lookup and next-hop determination, the design of libESMTP is simplified; thus goals are made achievable. Besides, such features are undesirable in a program that is not an MTA, particularly if the client is behind a firewall which blocks access to port 25 on the Internet.
Enhancements:
- This release applies bugfixes and plugs some memory leaks.
- It also attends to a few autoconf-related issues.
<<less
Download (0.46MB)
Added: 2005-12-16 License: LGPL (GNU Lesser General Public License) Price:
1410 downloads
GNU Wget 1.10.2

GNU Wget 1.10.2


GNU Wget is a free software package for retrieving files using HTTP, HTTPS and FTP, the two most widely-used Internet protocols. more>>
GNU Wget is a free software package for retrieving files using HTTP, HTTPS and FTP, the two most widely-used Internet protocols.
It is a non-interactive commandline tool, so it may easily be called from scripts, cron jobs, terminals without Xsupport, etc.
Main features:
- Can resume aborted downloads, using REST and RANGE
- Can use filename wild cards and recursively mirror directories
- NLS-based message files for many different languages
- Optionally converts absolute links in downloaded documents to relative, so that downloaded documents may link to each other locally
- Runs on most UNIX-like operating systems as well as Microsoft Windows
- Supports HTTP and SOCKS proxies
- Supports HTTP cookies
- Supports persistent HTTP connections
- Unattended / background operation
- Uses local file timestamps to determine whether documents need to be re-downloaded when mirroring
- GNU wget is distributed under the GNU General Public License.
Enhancements:
- A buffer overrun in the NTLM code was fixed.
<<less
Download (1.2MB)
Added: 2005-10-13 License: GPL (GNU General Public License) Price:
1476 downloads
Fetchmail 6.3.8

Fetchmail 6.3.8


fetchmail is a free, full-featured, robust, well-documented remote-mail retrieval utility. more>>
Fetchmail is a full-featured, robust, well-documented remote-mail retrieval and forwarding utility intended to be used over on-demand TCP/IP links (such as SLIP or PPP connections). Fetchmail supports every remote-mail protocol now in use on the Internet: POP2, POP3, RPOP, APOP, KPOP, all flavors of IMAP, ETRN, and ODMR. It can even support IPv6 and IPSEC.
Fetchmail retrieves mail from remote mail servers and forwards it via SMTP, so it can then be read by normal mail user agents such as mutt, elm(1) or BSD Mail. It allows all your system MTAs filtering, forwarding, and aliasing facilities to work just as they would on normal mail.
Fetchmail offers better security than any other Unix remote-mail client. It supports APOP, KPOP, OTP, Compuserve RPA, Microsoft NTLM, and IMAP RFC1731 encrypted authentication methods including CRAM-MD5 to avoid sending passwords en clair. It can be configured to support end-to-end encryption via tunneling with ssh, the Secure Shell.
Fetchmail can be used as a POP/IMAP-to-SMTP gateway for an entire DNS domain, collecting mail from a single drop box on an ISP and SMTP-forwarding it based on header addresses. (We dont really recommend this, though, as it may lose important envelope-header information. ETRN or a UUCP connection is better.)
Fetchmail can be started automatically and silently as a system daemon at boot time. When running in this mode with a short poll interval, it is pretty hard for anyone to tell that the incoming mail link is not a full-time "push" connection.
Fetchmail is easy to configure. You can edit its dotfile directly, or use the interactive GUI configurator (fetchmailconf) supplied with the fetchmail distribution. It is also directly supported in linuxconf versions 1.16r8 and later.
Fetchmail is fast and lightweight. It packs all its standard features (POP3, IMAP, and ETRN support) in 196K of core on a Pentium under Linux.
Fetchmail is open-source software. The openness of the sources is your strongest possible assurance of quality and reliability.
Main features:
- STARTTLS is supported in both POP and IMAP.
- ESMTP AUTH (RFC 2554) is supported.
- Has the capability of adding trace information to the Received header to faciliate mail filtering by mailserver and remote account.
- Fetchmail now has options to handle SSL certificate validation.
- Fetchmail can be told to fall back to delivering via local sendmail if it cant open port 25.
- Support for AUTH=CRAM-MD5 under POP3, a la RFC2195.
- Support for ODMR (On-Demand Mail Relay), RFC 2645.
- Its now easy to deliver mail to a local LMTP socket.
- The interface option now checks both local and remote interface IPs.
- The plugin facility has been enhanced; %h and %p options are now available to pass in the hostname and service port number.
- Added a dropdelivered option to discard Delivered-To headers. This addresses a problem with using fetchmail and postfix as a relay inside a domain; when postfix sees incoming messages with delivered-to headers looking exactly the same as the ones it adds himself, it bounces the message.
- Added --smtpname to set username and domain portion of SMTP "RCPT TO" command. - Added "from" servers IP address to inserted Received line.
- Fetchmail now runs on BeOS, thanks to David Reid .
- In IMAP, unseen-message counting and indexing is now done by SEARCH UNSEEN at the beginning of each poll or re-poll (rather than with the UNSEEN and RECENT responses and FLAGS queries on individual messages). This significantly cuts down on traffic to and from the server, and gives more reliable results.
- The aka option now matches hostname suffixes, so (for example) saying `aka netaxs.com will match not just netaxs.com but also (say) pop3.netaxs.com and mail.netaxs.com.
- Fetchmail can optionally use the RFC 2177 IDLE extension on an IMAP server that supports it. On IMAP servers that dont, it can simulate it using periodic NOOP commands.
- Fetchmail now recognizes the RFC 2449 extended responses [IN-USE] and [LOGIN-DELAY].
- Fetchmail running in daemon mode now restarts itself quietly when the rc file is touched.
- Following recent court decisions and changes in U.S. federal regulatory policy, hooks for Secure Sockets Layer (SSL) are now part of the main fetchmail distribution. The distribution still contains no actual cryptographic code.
- NTLM support under IMAP, so fetchmail can query Microsoft Exchange servers.
- Expunge option can now be used to break POP3 retrieval into subsessions.
- Support for AUTH=CRAM-MD5 under IMAP, a la RFC2195.
<<less
Download (1.1MB)
Added: 2007-04-07 License: GPL (GNU General Public License) Price:
932 downloads
 
Other version of Fetchmail
Fetchmail 6.2.9 RC10It supports APOP, KPOP, OTP, Compuserve RPA, Microsoft NTLM, and IMAP RFC1731 encrypted authentication methods including CRAM-MD5 to avoid sending passwords en clair. It can be configured
License:GPL (GNU General Public License)
Download (1.1MB)
1426 downloads
Added: 2005-11-28
mpop 1.0.11

mpop 1.0.11


mpop is a small and fast POP3 client with header based mail filtering capabilities. more>>
mpop project is a small and fast POP3 client with header based mail filtering capabilities.
mpop is released under the GPL with the additional exemption that compiling, linking, and/or using OpenSSL is allowed.
Main features:
- Header based mail filtering: filter junk mail before downloading it
- Delivery to mbox files, maildir folders or a mail delivery agent (MDA)
- Very fast POP3 implementation, using command pipelining
- Authentication methods USER/PASS, APOP, PLAIN, LOGIN and CRAM-MD5 (and GSSAPI, DIGEST-MD5, and NTLM when GNU SASL is used)
- TLS encrypted connections (including server certificate verification and the possibility to send a client certificate)
- IPv6 support
- support for multiple accounts
<<less
Download (0.55MB)
Added: 2007-08-01 License: GPL (GNU General Public License) Price:
816 downloads
HttpAuth 0.6

HttpAuth 0.6


HttpAuth is a daemon and framework for authenticating HTTP requests. more>>
HttpAuth is a daemon and framework for authenticating HTTP requests. It supports Basic and Digest authentication against various databases such as LDAP, PostgreSQL, or MySQL.
HttpAuth project also supports NTLM authentication against a Windows Server.
Compatibility: Various web servers can talk with httpauthd. Currently modules, plugins or code for the following systems have been written:
- Apache 1.3.x
- Apache 2.x
- Java Servlets
- Jetty Web Server
Enhancements:
- A crash which occurred when doing some sort of Basic authentication was fixed.
- Numbers are now allowed in handler names.
- The program reconnects properly to httpauthd when that daemon has been restarted.
- The Java (Jetty) authenticator now supports NTLM properly.
- A bug where Apache 2.x wouldnt lock down credentials for NTLM properly to a single connection was fixed.
<<less
Download (0.88MB)
Added: 2006-12-22 License: GPL (GNU General Public License) Price:
1037 downloads
Safesquid Content Filtering Proxy 4.2.2.RC7

Safesquid Content Filtering Proxy 4.2.2.RC7


Antivirus and content filtering proxy server more>> Safesquid is an antivirus and content filtering proxy server. It has many advanced features like URL blacklists, bandwidth management, regular expression substitution on Website content and requested URLs, ICP and CARP support to interoperate with other proxy servers, configuration synchronization to ease management of proxy servers in a cluster, ICAP support to use third-party content adaptation software, image and link prefetching, HTTP and FTP content caching, NTLM and Basic authentication, and an intutive Web interface to configure the proxy server.<<less
Download (724KB)
Added: 2009-04-19 License: Freeware Price: Free
236 downloads
msmtp 1.4.13

msmtp 1.4.13


msmtp is an SMTP client that can be used with Mutt and other MUAs. more>>
msmtp project is an SMTP client.
In the default mode, msmtp transmits a mail to an SMTP server (for example at a free mail provider) which does the delivery.
To use this program with your mail user agent (MUA), create a configuration file with your mail account(s) and tell your MUA to call msmtp instead of /usr/sbin/sendmail.
msmtpqueue is a pair of very simple shell scripts that allows you to "queue" mails and send them all at a later time (useful for dialup connections: write your mails offline and send them when you are online).
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
msmtp is released under the GPL with the additional exemption that compiling, linking, and/or using OpenSSL is allowed.
Main features:
- Authentication methods PLAIN, LOGIN and CRAM-MD5 (and GSSAPI, DIGEST-MD5 and NTLM when compiled with GNU SASL support)
- TLS encrypted connections (including server certificate verification and the possibility to send a client certificate)
- DSN (Delivery Status Notification) support
- RMQS (Remote Message Queue Starting) support (ETRN keyword)
- PIPELINING support for increased transmission speed
- IPv6 support
- support for multiple accounts
- sendmail compatible interface (command line options and exit codes)
<<less
Download (0.46MB)
Added: 2007-08-02 License: GPL (GNU General Public License) Price:
815 downloads
RSSOwl 1.2.3

RSSOwl 1.2.3


RSSOwl is an RSS/RDF/Atom newsreader that uses SWT. more>>
Applications that collect data from RSS-compliant sites are called RSS readers or "aggregators" RSSOwl is such an application.
RSSOwl lets you gather, organize, update, and store information from any compliant source in a convenient, easy to use interface, save selected information in various formats for offline viewing and sharing, and much more.
Its easy to configure, available in many many languages and the best of all: Its platform-independent.
RSS ("Really Simple Syndication" or "Rich Site Summary") is a document specification that gives users the power to collect and organize Web-based news and information in a more efficient manner.
The owl is a traditional symbol of wisdom, and a quiet, efficient hunter. Youll find RSSOwls "big eyes" a big help when scanning the Webs vast array of RSS sources.
Main features:
- Import your favorite newsfeeds using the OPML format. Most newsreaders support the export of newsfeeds via OPML, making it very easy to switch to RSSOwl and have your bookmarked favorites inside RSSOwl.
- Bookmark your favorite newsfeeds in nested categories. Set properties like "auto-update-interval", "open on startup" or "reload on startup".
- RSSOwl helps you finding a suitable title for your favorites. Just click the "Grab title from newsfeed" button and RSSOwl will scan the newsfeed for the title and use it for the new favorite.
- Create collections of newsfeeds other may subscribe to. A subscription is a file that contains newsfeeds. Placing the subscription online will allow others to subscribe to that collection and have the same newsfeeds inside RSSOwl. The subscription is updated each time RSSOwl is starting.
- Switch on the internal browser to read news that contain HTML. Some newsfeeds use this kind of technique to include images and links.
- Select a newsfeed, a single news or an entire category of newsfeeds to export the content into one of the formats PDF, RTF or HTML. When exporting news into PDF, RSSOwl will create bookmarks showing the titles of all news. These are very helpfull when searching for a particular news inside the PDF document.
- RSSOwls internal panels are highly customizable. Choose between a 2-column and a 3-column layout. Hide and restore the tree containing all favorites and the quickview box. Maximize the tabfolder with a single click in order to view a website inside the internal browser with full size.
- A lot of search-options make RSSOwl a powerful application to search inside a newsfeed or an entire category. The boolean operators "and", "or" and "not" may be combined with the search-term. Common options to only match a whole word, regard case-sensitivity or to use regular expressions are allowed. Results are displayed in the tabfolder and each keyword is highlighted inside the newstext.
- AmphetaRate is a centralized ratings/recommendation service that provides personalized news and blog recommendations. Each news found in your subscribed feeds may be rated "Fantastic", "Good", "Moderate", "Bad" and "Very bad". Your recommendations are computed by Bayesian filtering and an algorithm finding people who share your taste.
- The integrated newsfeed-search engine allows to search for newsfeeds by keyword. Simply enter words like "News" or "Linux" and press the search button. Soon the engine will give out a list of newsfeeds. It is also possible to restrict the search to only match newsfeeds that have the same language that RSSOwl has set. Once the search has finished, import all of them into any category with a single click.
- Tired of copying and pasting newsfeeds out of a website into your newsreader? Simply enter the website containing links to newsfeeds into the feed-discovery and RSSOwl will show all the newsfeeds it has found. Import them into any category with a single click. Or enter the URL to an OPML file and gain access to its newsfeeds - its a breeze!
- The integrated feedvalidator allows to check the validity of a newsfeed. Any error or warning is shown inside the validator, together with the line-number. This feature makes the perfect tool for bloggers as theyre able to test their newsfeeds. RSSOwl provides support for RSS 0.91, 0.92 and 2.0 straight "out of the box".
- Access password protected newsfeeds. RSSOwl 1.0 is supporting the Base authentication which is the original and most compatible authentication scheme. But be prepared for RSSOwl 1.1 coming soon which will also support Digest and NTLM authentication that was introduced with HTTP 1.1.
- A small toolbar above the tree containing all favorites allowes to execute the commands "Reload All Favorites", "Aggregate All Favorites", "Search in all Favorites" and "Mark All Favorites Read". Believe us, its a handy feature. :-)
- Place RSSOwl into the system tray on minimization. As soon as RSSOwl is reloading a newsfeed and detects that new, unread news are available it will tell you so.
- RSSOwl is highly customizable. "Preferences" allow to change fonts, languages, colors, hotkeys and a lot more. Export settings into a file to import them into RSSOwl on a different computer. Switch fonts or make yourself comfortable with RSSOwl by choosing one of the 25 languages available - everything is just a few clicks away!
<<less
Download (4.7MB)
Added: 2006-11-27 License: Eclipse Public License Price:
1065 downloads
LibSoup 2.2.100

LibSoup 2.2.100


LibSoup is an HTTP client/server library for GNOME. more>>
LibSoup is an HTTP client/server library for GNOME. LibSoup library uses GObjects and the glib main loop, to integrate well with GNOME applications.
Main features:
- Both asynchronous (GMainLoop and callback-based) and synchronous APIs
- Automatically caches connections
- SSL Support using GnuTLS
- Proxy support, including authentication and SSL tunneling
- Client support for Digest, NTLM, and Basic authentication
- Server support for Digest and Basic authentication
See the test programs in tests/ for simple examples of how to use the code, or evolution-data-server and evolution-exchange for more complicated examples.
Enhancements:
- The soup_headers_parse_status_line() was fixed, so WebDAV response parsing will work again.
- A bug was fixed in the header-parsing regression test that caused the test to fail sometimes, even though the actual header-parsing code was fine.
<<less
Download (0.60MB)
Added: 2007-02-26 License: LGPL (GNU Lesser General Public License) Price:
970 downloads
WebCleaner 2.41

WebCleaner 2.41


WebCleaner is a filtering HTTP proxy. more>>
WebCleaner is a filtering HTTP proxy. It can be customized to your needs.
Main features:
- remove unwanted HTML (adverts, flash, etc.)
- popup blocker
- disable animated GIFs
- filter images by size, remove banner adverts
- compress documents on-the-fly (with gzip)
- reduce images to low-bandwidth JPEGs
- remove/add/modify arbitrary HTTP headers
- configurable over web interface
- usage of SquidGuard blacklists
- antivirus filter module
- detection and correction of known HTML security flaws
- Basic, Digest and (untested) NTLM proxy authentication support
- per-host access control
- HTTP/1.1 support (persistent connections, pipelining)
- HTTPS proxy CONNECT and optional SSL gateway support
Enhancements:
- Compatibility problems with Internet Explorer and the Compress
- filter have been fixed.
- The Blocker filter now allows absolute block URLs.
- The sets of blacklisted domains and advertisement servers have been updated.
<<less
Download (1.6MB)
Added: 2006-12-16 License: GPL (GNU General Public License) Price:
1164 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 2
  • 1
  • 2