code | #
# (C) Tenable Network Security
#
include("compat.inc");
if (description)
{
script_id(24281);
script_version("1.14");
script_cvs_date("Date: 2018/06/27 18:42:27");
script_cve_id("CVE-2006-4626");
script_bugtraq_id(19903);
script_name(english:"avast! Server Edition LHA Archive Extended-header Field Processing Overflow");
script_summary(english:"Checks version of avast! Server Edition");
script_set_attribute(attribute:"synopsis", value:
"The remote Windows host contains an application that is affected by a
buffer overflow.");
script_set_attribute(attribute:"description", value:
"The remote host is running avast! Server Edition.
The installed version of avast! Server Edition is reportedly prone to
a heap overflow when processing LHA archives with long filename and
directory-name extended-header fields. An attacker may be able to
exploit this issue to execute arbitrary code on the remote host,
likely with LOCAL SYSTEM privileges.");
script_set_attribute(attribute:"see_also", value:"http://www.hustlelabs.com/advisories/04072006_alwil.pdf");
# http://web.archive.org/web/20070516181540/http://www.avast.com/eng/avast-4-server-revision-history.html
script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?21384a15" );
script_set_attribute(attribute:"solution", value:"Upgrade to avast! Server Edition 4.7.660 or later.");
script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:P/I:P/A:P");
script_set_cvss_temporal_vector("CVSS2#E:U/RL:OF/RC:C");
script_set_attribute(attribute:"exploitability_ease", value:"No known exploits are available");
script_set_attribute(attribute:"exploit_available", value:"false");
script_set_attribute(attribute:"vuln_publication_date", value:"2006/09/07");
script_set_attribute(attribute:"plugin_publication_date", value:"2007/02/06");
script_set_attribute(attribute:"plugin_type", value:"local");
script_end_attributes();
script_category(ACT_GATHER_INFO);
script_family(english:"Windows");
script_copyright(english:"This script is Copyright (C) 2007-2018 Tenable Network Security, Inc.");
script_dependencies("smb_hotfixes.nasl");
script_require_keys("SMB/Registry/Enumerated");
script_require_ports(139, 445);
exit(0);
}
include("smb_func.inc");
include("audit.inc");
# Connect to the appropriate share.
if (!get_kb_item("SMB/Registry/Enumerated")) exit(0);
name = kb_smb_name();
port = kb_smb_transport();
#if (!get_port_state(port)) exit(0);
login = kb_smb_login();
pass = kb_smb_password();
domain = kb_smb_domain();
#soc = open_sock_tcp(port);
#if (!soc) exit(0);
#session_init(socket:soc, hostname:name);
if(!smb_session_init()) audit(AUDIT_FN_FAIL, 'smb_session_init');
rc = NetUseAdd(login:login, password:pass, domain:domain, share:"IPC$");
if (rc != 1)
{
NetUseDel();
exit(0);
}
# Connect to remote registry.
hklm = RegConnectRegistry(hkey:HKEY_LOCAL_MACHINE);
if (isnull(hklm))
{
NetUseDel();
exit(0);
}
# Grab installation path and version from the registry.
path = NULL;
prod = NULL;
version = NULL;
key = "SOFTWARE\ALWIL Software\Avast\4.0";
key_h = RegOpenKey(handle:hklm, key:key, mode:MAXIMUM_ALLOWED);
if (!isnull(key_h))
{
value = RegQueryValue(handle:key_h, item:"Avast4ProgramFolder");
if (!isnull(value)) path = value[1];
value = RegQueryValue(handle:key_h, item:"Product");
if (!isnull(value)) prod = value[1];
value = RegQueryValue(handle:key_h, item:"VersionShort");
if (!isnull(value)) version = value[1];
value = RegQueryValue(handle:key_h, item:"SetupVersion");
if (!isnull(value)) version += "." + value[1];
RegCloseKey (handle:key_h);
}
RegCloseKey(handle:hklm);
# If it's installed...
if (!isnull(path) && !isnull(prod) && prod == "av_srv" && !isnull(version))
{
# Check the version number.
ver = split(version, sep:'.', keep:FALSE);
for (i=0; i<max_index(ver); i++)
ver[i] = int(ver[i]);
fix = split("4.7.660", sep:'.', keep:FALSE);
for (i=0; i<max_index(fix); i++)
fix[i] = int(fix[i]);
for (i=0; i<max_index(ver); i++)
if (ver[i] < fix[i])
{
report = string(
"avast! Server Edition version ", version, " is installed under : \n",
"\n",
" ", path, "\n"
);
security_hole(port:port, extra:report);
break;
}
else if (ver[i] > fix[i])
break;
}
# Clean up.
NetUseDel();
|