ntlm v2
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 184
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.
<<lessHere 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.
Download (0.037MB)
Added: 2007-07-18 License: GPL (GNU General Public License) Price:
834 downloads
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
<<lessInstallation:
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
Download (0.040MB)
Added: 2006-05-02 License: BSD License Price:
1272 downloads
NimbleX 2007 v2
NimbleX is a small but versatile operating system. more>>
NimbleX distrbution is a small but versatile operating system which is able to boot mainly from a small 8 cm CD but also from flash memory like Mp3 players and USB pens.
Because it runs entirely from a CD or USB it doesnt require installation or even a hard drive. NimbleX is based on Slackware with the use of linux-live scripts and is has a lot of this distribution advantages.
One of them is the availability of thousands of free software that can be found in the form of packages.
The beauty of it is that even if is small it has a beautiful graphical interface and also a lot of built in software for browsing the internet, writing documents, listening to music, playing movies and many more.
Advantages:
First of all, because of the small size you can always carry it on yourself and use it as your mobile OS everywhere you want for the things that where mentioned above and many more.
Because it has the ability to automatically detect and mount all the partitions you can access data on any another computers with ought even knowing the password, both on Linux and Windows.
Now you can use it as a recovery disk or for any other purpose. Because of the low requirements you can run it on old computers as a server. NimbleX is very customizable and can be made easily to satisfy your needs.
Main features:
- Kernel 2.6.11 (for good security and hardware support)
- KDE 3.4.2 (for ease of use, nice looks and multiple applications support)
- This means that youll have a secure OS where you will not have any problems with viruses and worms that in the same time is build to be extremely user friendly. It can be used both by complete newbies and by advanced ones.
- The built in software gives you the ability to browse the internet, read your e-mail, instant messaging, listen to Mp3s, watch movies, read PDF documents and many more.
- You can use it as a recovery disk or when the system is really messed up to backup data over the network or on the local hard drive. It can also be used for remote administration both on linux and windows machines using various protocols.
- NimbleX can be easily customized for individual needs. You can easy add modules in your CD with the software you want to have permanently on CD. The modules can be easily created from slackware packages or just downloaded from slax web site.
Enhancements:
- NimbleX 2007v2 is out! NimbleX is a small but versatile operating system which is able to boot from an 8 cm CD, from flash memory or MP3 players. Because it runs entirely from a CD, USB or network it doesnt require installation or even much hardware. NimbleX is based on Slackware and Linux-Live scripts. NimbleX 2007v2 highlights: better wireless support; full automatic support for NTFS; changes in Fluxbox (fbpanel); added OpenBox, QuadConsole, Dillo, Guidedog; xconf2 (maybe wide screen will work); ALSA and other software updates; script for creating nimblex.data file; many bugfixes....
<<lessBecause it runs entirely from a CD or USB it doesnt require installation or even a hard drive. NimbleX is based on Slackware with the use of linux-live scripts and is has a lot of this distribution advantages.
One of them is the availability of thousands of free software that can be found in the form of packages.
The beauty of it is that even if is small it has a beautiful graphical interface and also a lot of built in software for browsing the internet, writing documents, listening to music, playing movies and many more.
Advantages:
First of all, because of the small size you can always carry it on yourself and use it as your mobile OS everywhere you want for the things that where mentioned above and many more.
Because it has the ability to automatically detect and mount all the partitions you can access data on any another computers with ought even knowing the password, both on Linux and Windows.
Now you can use it as a recovery disk or for any other purpose. Because of the low requirements you can run it on old computers as a server. NimbleX is very customizable and can be made easily to satisfy your needs.
Main features:
- Kernel 2.6.11 (for good security and hardware support)
- KDE 3.4.2 (for ease of use, nice looks and multiple applications support)
- This means that youll have a secure OS where you will not have any problems with viruses and worms that in the same time is build to be extremely user friendly. It can be used both by complete newbies and by advanced ones.
- The built in software gives you the ability to browse the internet, read your e-mail, instant messaging, listen to Mp3s, watch movies, read PDF documents and many more.
- You can use it as a recovery disk or when the system is really messed up to backup data over the network or on the local hard drive. It can also be used for remote administration both on linux and windows machines using various protocols.
- NimbleX can be easily customized for individual needs. You can easy add modules in your CD with the software you want to have permanently on CD. The modules can be easily created from slackware packages or just downloaded from slax web site.
Enhancements:
- NimbleX 2007v2 is out! NimbleX is a small but versatile operating system which is able to boot from an 8 cm CD, from flash memory or MP3 players. Because it runs entirely from a CD, USB or network it doesnt require installation or even much hardware. NimbleX is based on Slackware and Linux-Live scripts. NimbleX 2007v2 highlights: better wireless support; full automatic support for NTFS; changes in Fluxbox (fbpanel); added OpenBox, QuadConsole, Dillo, Guidedog; xconf2 (maybe wide screen will work); ALSA and other software updates; script for creating nimblex.data file; many bugfixes....
Download (200.3MB)
Added: 2007-04-25 License: GPL (GNU General Public License) Price:
972 downloads
PyPanel 2.2
PyPanel is a panel/taskbar for X11 window managers. more>>
PyPanel is a lightweight panel/taskbar written in Python and C for X11 window managers. It can be easily customized to match any desktop theme or taste.
PyPanel works with WindowMaker and EWMH compliant WMs (Kahakai, Openbox, PekWM, FVWM, etc). PyPanel is distributed under the GNU General Public License v2.
Main features:
- Transparency with shading/tinting
- Panel dimensions, location and layout
- Font type and colors with Xft support
- Button events/actions
- Clock and workspace name display
- System Tray (Notification Area)
- Autohiding
<<lessPyPanel works with WindowMaker and EWMH compliant WMs (Kahakai, Openbox, PekWM, FVWM, etc). PyPanel is distributed under the GNU General Public License v2.
Main features:
- Transparency with shading/tinting
- Panel dimensions, location and layout
- Font type and colors with Xft support
- Button events/actions
- Clock and workspace name display
- System Tray (Notification Area)
- Autohiding
Download (0.027MB)
Added: 2005-04-28 License: GPL (GNU General Public License) Price:
1640 downloads
DEFT 2.0
DEFT (acronym of Digital Evidence & Forensic Toolkit) is a customized Linux distribution of the Kubuntu live Linux CD. more>>
DEFT (acronym of Digital Evidence & Forensic Toolkit) is a customized Linux distribution of the Kubuntu live Linux CD.
It is a very easy to use system that includes an excellent hardware detection and the best open source applications dedicated to incident response and computer forensics.
Deft is meant to be used by:
- police
- investigators
- system administrator
- individuals
and all the people who need to use forensic tool but dont know the open source operative systems and the Forensic techniques.
Enhancements:
Hi everybody,
today i release the second (v2) stable DEFT Linux version.
Me and Massimiliano are finishing to develop a checksum tool that allows to have a temporal esteem when the checksum end. That tool will be released in DEFT v2.1 near the last day of june.
<<lessIt is a very easy to use system that includes an excellent hardware detection and the best open source applications dedicated to incident response and computer forensics.
Deft is meant to be used by:
- police
- investigators
- system administrator
- individuals
and all the people who need to use forensic tool but dont know the open source operative systems and the Forensic techniques.
Enhancements:
Hi everybody,
today i release the second (v2) stable DEFT Linux version.
Me and Massimiliano are finishing to develop a checksum tool that allows to have a temporal esteem when the checksum end. That tool will be released in DEFT v2.1 near the last day of june.
Download (637MB)
Added: 2007-08-05 License: GPL (GNU General Public License) Price:
820 downloads
CMap 0.2
CMap is a cross map API designed to make coding and switching between online maps such as Google and Yahoo easier. more>>
CMap project is a cross map API designed to make coding and switching between online maps such as Google and Yahoo easier and quicker.
Currently, CMap can generate Google Maps, Yahoo Maps, and Google Earth KML files. There are many more advanced plans for CMap, and I intend to support it for a long time as it has a practical application for myself.
Written in Php, CMap is very easy to use and the INSTALL file contains code examples of how to get CMap up and running easily and as soon as possible.
Enhancements:
- This release moves the Google Map API to v2.
- It includes better memory management, especially in Internet Explorer.
<<lessCurrently, CMap can generate Google Maps, Yahoo Maps, and Google Earth KML files. There are many more advanced plans for CMap, and I intend to support it for a long time as it has a practical application for myself.
Written in Php, CMap is very easy to use and the INSTALL file contains code examples of how to get CMap up and running easily and as soon as possible.
Enhancements:
- This release moves the Google Map API to v2.
- It includes better memory management, especially in Internet Explorer.
Download (0.008MB)
Added: 2006-07-13 License: GPL (GNU General Public License) Price:
697 downloads
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).
<<lessSYNOPSIS
< 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).
Download (0.050MB)
Added: 2007-03-19 License: Perl Artistic License Price:
955 downloads
RechnungsZentrale V2 1.1.6
RechnungZentrale V2 is a software which can create and manage invoices and invoice line items. more>>
RechnungZentrale project is a software which can create and manage invoices and invoice line items.
The software is completely webbased and can manage unlimited admins(persons who are able to create invoice line items and invoices) and customers of the admins. The software is quite simple, so dont expect to mutch goodies.
A special feature is the powerfull Admin-Customer-User-realationchip-management. With this feature its possible to share customers between admins.
It support the following languages:
German
English
Frensh
Dansk
Finnish
<<lessThe software is completely webbased and can manage unlimited admins(persons who are able to create invoice line items and invoices) and customers of the admins. The software is quite simple, so dont expect to mutch goodies.
A special feature is the powerfull Admin-Customer-User-realationchip-management. With this feature its possible to share customers between admins.
It support the following languages:
German
English
Frensh
Dansk
Finnish
Download (0.13MB)
Added: 2006-09-25 License: Other/Proprietary License with Source Price:
1128 downloads
TorrentTrader v2.0 RC1
TorrentTrader provides a PHP-based Tracker application for the BitTorrent P2P protocol. more>>
TorrentTrader provides a PHP-based Tracker application for the BitTorrent P2P protocol.
TorrentTrader allows anyone with a Web server supporting PHP and MySQL to run their own BitTorrent tracker. Also offered is a lite edition that does not require MySQL.
"It is an open-source project, which I have been in charge of from summer 2004 to summer 2005. Though I am no longer in charge of this project, you can find here for download the versions I have released."
<<lessTorrentTrader allows anyone with a Web server supporting PHP and MySQL to run their own BitTorrent tracker. Also offered is a lite edition that does not require MySQL.
"It is an open-source project, which I have been in charge of from summer 2004 to summer 2005. Though I am no longer in charge of this project, you can find here for download the versions I have released."
Download (1.0MB)
Added: 2007-02-24 License: GPL (GNU General Public License) Price:
609 downloads
findmp3 0.7
findmp3 is a program that searches through directory trees for mp3-files. more>>
findmp3 is a program that searches through directory trees for mp3-files. This information is retrieved from the id3(v2) tags in an mp3-file. The syntax of the commandline is very similar to that of the find command.
Enhancements:
- added -x switch which lets findmp3 continue when errors are detected
<<lessEnhancements:
- added -x switch which lets findmp3 continue when errors are detected
Download (0.016MB)
Added: 2006-08-03 License: GPL (GNU General Public License) Price:
1177 downloads
HyperWRT 2.0
HyperWRT is a power boost firmware for the Linksys WRT54G and WRT54GS router. more>>
HyperWRT is a power boost firmware for the Linksys WRT54G and WRT54GS router. HyperWRT goal is to add a limited set of features to the last Linksys firmware, extending its possibilities but staying close to the official firmware.
HyperWRT is based on Linksys 3.03.6 firmware for the WRT54G and Linksys 3.37.6 firmware for the WRT54GS.
HyperWRT will work on these hardware versions :
WRT54G : V1, V1.1, V2, V2.2, V3
WRT54GS : V1, V1.1, V2
Main features:
- Adjustable Transmit Power & Antenna Select
- 13 Wireless Channels
- Boot Wait flash protection
- Increased Port Forwarding & Triggering Fields
- Increased Qos Device & Application Fields
- Increased Access Restrictions Policies & Blocked Services Fields
- Command Shell
- Telnet Daemon
- Startup & Firewall Scripts
- Uptime
<<lessHyperWRT is based on Linksys 3.03.6 firmware for the WRT54G and Linksys 3.37.6 firmware for the WRT54GS.
HyperWRT will work on these hardware versions :
WRT54G : V1, V1.1, V2, V2.2, V3
WRT54GS : V1, V1.1, V2
Main features:
- Adjustable Transmit Power & Antenna Select
- 13 Wireless Channels
- Boot Wait flash protection
- Increased Port Forwarding & Triggering Fields
- Increased Qos Device & Application Fields
- Increased Access Restrictions Policies & Blocked Services Fields
- Command Shell
- Telnet Daemon
- Startup & Firewall Scripts
- Uptime
Download (MB)
Added: 2006-09-04 License: GPL (GNU General Public License) Price:
781 downloads
AndyChat 3.00
AndyChat is a program for chatting to people over various network protocols. more>>
AndyChat is a program for chatting to people over various network protocols. It was originally designed as a chat program which can work only on IPX networks. Now its fast becoming a command line Curses based IRC client which will eventually have all the features of AndyChat v2.xx minus the IPX code, and will have additional features including support for all the Instant Messenger systems I can get my hands on, starting with ICQ, and also several Java/Web chat backends (for users to participate in Yahoo! Web Chats, etc from the console!).
Also, since AndyChat v3.xx is written in Perl, it should be theoretically possible to keep it cross-platform, although good luck in getting it to work on Win.
<<lessAlso, since AndyChat v3.xx is written in Perl, it should be theoretically possible to keep it cross-platform, although good luck in getting it to work on Win.
Download (0.057MB)
Added: 2006-06-15 License: GPL (GNU General Public License) Price:
1226 downloads
XBlast 2.10.4
XBlast is a multi-player arcade game for X11R5/R6. more>>
XBlast is a multi-player arcade game for X11R5/R6 (v2.6 or TNT) and Windows (TNT version only). The game can be played with at least two players and up to six players.
XBlast was inspired by the video/computer game Bomberman (Dynablaster), which was to my knowledge first programmed for NECs PC Engine/Turbo Grafx.
Other commercial versions of the original game exist for IBM-PC, Atari ST, Amiga [trop cool lAmiga], NES, GameBoy and Super NES.
<<lessXBlast was inspired by the video/computer game Bomberman (Dynablaster), which was to my knowledge first programmed for NECs PC Engine/Turbo Grafx.
Other commercial versions of the original game exist for IBM-PC, Atari ST, Amiga [trop cool lAmiga], NES, GameBoy and Super NES.
Download (0.68MB)
Added: 2006-06-16 License: GPL (GNU General Public License) Price:
1238 downloads
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.
<<lessFetchmail 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.
Download (1.1MB)
Added: 2007-04-07 License: GPL (GNU General Public License) Price:
932 downloads
Other version of Fetchmail
License:GPL (GNU General Public License)
Fantasy Chess v2 Revision 11
Fantasy Chess is a chess game environment with a game server. more>>
Fantasy Chess is a chess game environment with a game server, GTK GUI, private and public AI, and a lot of libraries to help developers.
<<less Download (1.7MB)
Added: 2006-06-16 License: GPL (GNU General Public License) Price:
1234 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 ntlm v2 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