The remote Windows host is prone to a buffer overflow attack via Sun Java Web Start JNLP File Handling Overflow (102996)
Reporter | Title | Published | Views | Family All 34 |
---|---|---|---|---|
Check Point Advisories | Sun Java Web Start JRE Buffer Overflow - Ver2 (CVE-2007-3655) | 3 Feb 201400:00 | – | checkpoint_advisories |
Check Point Advisories | Sun Java Web Start JRE Buffer Overflow - Ver2 (CVE-2007-3655) | 7 Jan 201400:00 | – | checkpoint_advisories |
Prion | Stack overflow | 10 Jul 200719:30 | – | prion |
0day.today | Sun Java Runtime Environment 1.6 - Web Start JNLP File Stack Buffer Overflow | 9 Apr 201400:00 | – | zdt |
NVD | CVE-2007-3655 | 10 Jul 200719:30 | – | nvd |
Tenable Nessus | Sun Java Web Start JNLP File Handling Overflow (102996) (Unix) | 22 Feb 201300:00 | – | nessus |
Tenable Nessus | RHEL 4 : java-1.5.0-sun (RHSA-2007:0818) | 24 Jan 201300:00 | – | nessus |
Tenable Nessus | SuSE 10 Security Update : IBM Java 1.4.2 (ZYPP Patch Number 4542) | 13 Dec 200700:00 | – | nessus |
Tenable Nessus | SuSE 10 Security Update : IBM Java 1.5.0 (ZYPP Patch Number 4544) | 13 Dec 200700:00 | – | nessus |
Tenable Nessus | RHEL 4 / 5 : java-1.5.0-ibm (RHSA-2007:0829) | 24 Aug 200900:00 | – | nessus |
Source | Link |
---|---|
nessus | www.nessus.org/u |
securityfocus | www.securityfocus.com/archive/1/473224/30/0/threaded |
beyondtrust | www.beyondtrust.com/resources/blog/research/ |
securityfocus | www.securityfocus.com/archive/1/473356/30/0/threaded |
cve | www.cve.mitre.org/cgi-bin/cvename.cgi |
#%NASL_MIN_LEVEL 70300
#
# (C) Tenable Network Security, Inc.
#
include('deprecated_nasl_level.inc');
include('compat.inc');
if (description)
{
script_id(25693);
script_version("1.31");
script_set_attribute(attribute:"plugin_modification_date", value:"2022/04/11");
script_cve_id("CVE-2007-3655");
script_bugtraq_id(24832);
script_xref(name:"EDB-ID", value:"30284");
script_name(english:"Sun Java Web Start JNLP File Handling Overflow (102996)");
script_set_attribute(attribute:"synopsis", value:
"The remote Windows host has an application that may be prone to a
buffer overflow attack.");
script_set_attribute(attribute:"description", value:
"There is reportedly a buffer overflow in the Java Web Start utility
distributed with the version of Sun Java Runtime Environment (JRE)
installed on the remote host. If an attacker can convince a user on
the affected host to open a specially crafted JNLP file, arbitrary
code could be executed subject to the user's privileges.");
script_set_attribute(attribute:"see_also", value:"https://www.beyondtrust.com/resources/blog/research/");
script_set_attribute(attribute:"see_also", value:"https://www.securityfocus.com/archive/1/473224/30/0/threaded");
script_set_attribute(attribute:"see_also", value:"https://www.securityfocus.com/archive/1/473356/30/0/threaded");
# http://web.archive.org/web/20080612184027/http://sunsolve.sun.com/search/document.do?assetkey=1-26-102996-1
script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?7eec761c");
script_set_attribute(attribute:"solution", value:
"Upgrade to Sun Java JDK and JRE 6 Update 2 / JDK and JRE 5.0 Update 12
or later and remove, if necessary, any affected versions.");
script_set_cvss_base_vector("CVSS2#AV:N/AC:M/Au:N/C:P/I:P/A:P");
script_set_cvss_temporal_vector("CVSS2#E:F/RL:OF/RC:C");
script_set_cvss3_base_vector("CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H");
script_set_cvss3_temporal_vector("CVSS:3.0/E:F/RL:O/RC:C");
script_set_attribute(attribute:"exploitability_ease", value:"Exploits are available");
script_set_attribute(attribute:"exploit_available", value:"true");
script_set_attribute(attribute:"exploit_framework_core", value:"true");
script_cwe_id(119);
script_set_attribute(attribute:"vuln_publication_date", value:"2007/07/10");
script_set_attribute(attribute:"patch_publication_date", value:"2007/07/09");
script_set_attribute(attribute:"plugin_publication_date", value:"2007/07/10");
script_set_attribute(attribute:"plugin_type", value:"local");
script_set_attribute(attribute:"cpe", value:"cpe:/a:oracle:jre");
script_set_attribute(attribute:"thorough_tests", value:"true");
script_end_attributes();
script_category(ACT_GATHER_INFO);
script_family(english:"Windows");
script_copyright(english:"This script is Copyright (C) 2007-2022 Tenable Network Security, Inc.");
script_dependencies("sun_java_jre_installed.nasl");
script_require_keys("SMB/Java/JRE/Installed");
exit(0);
}
include("global_settings.inc");
include("misc_func.inc");
# Check each installed JRE.
installs = get_kb_list("SMB/Java/JRE/*");
if (isnull(installs)) exit(0);
info = "";
vuln = 0;
foreach install (list_uniq(keys(installs)))
{
ver = install - "SMB/Java/JRE/";
if (
ver =~ "^1\.6\.0_0[01][^0-9]?" ||
ver =~ "^1\.5\.0_(0[0-9]|1[01])[^0-9]?"
)
{
dirs = make_list(get_kb_list(install));
vuln += max_index(dirs);
foreach dir (dirs)
info += '\n Path : ' + dir;
info += '\n Installed version : ' + ver;
info += '\n Fixed version : 1.6.0_02 / 1.5.0_12\n';
}
}
# Report if any were found to be vulnerable.
if (info)
{
port = get_kb_item("SMB/transport");
if (!port) port = 445;
if (report_verbosity)
{
if (vuln > 1) s = "s of Sun's JRE are";
else s = " of Sun's JRE is";
report =
'\n' +
'The following vulnerable instance' + s + ' installed on the\n' +
'remote host :\n' +
info;
security_warning(port:port, extra:report);
}
else security_warning(port);
}
Transform Your Security Services
Elevate your offerings with Vulners' advanced Vulnerability Intelligence. Contact us for a demo and discover the difference comprehensive, actionable intelligence can make in your security strategy.
Book a live demo