| Reporter | Title | Published | Views | Family All 12 |
|---|---|---|---|---|
| CVE-2008-4541 | 13 Oct 200820:00 | – | attackerkb | |
| CVE-2008-4541 | 13 Oct 200818:00 | – | cve | |
| CVE-2008-4541 | 13 Oct 200818:00 | – | cvelist | |
| KLA10346 ACE vulnerability in Java System Web Proxy Server | 13 Oct 200800:00 | – | kaspersky | |
| CVE-2008-4541 | 13 Oct 200820:00 | – | nvd | |
| Sun Java System Web Proxy Server < 4.0.8 Multiple Vulnerabilities - Windows | 16 Oct 200800:00 | – | openvas | |
| Sun Java System Web Proxy Server < 4.0.8 Multiple Vulnerabilities - Linux | 16 Oct 200800:00 | – | openvas | |
| Sun Java System Web Proxy Server Vulnerabilities (Windows) | 16 Oct 200800:00 | – | openvas | |
| Heap overflow | 13 Oct 200820:00 | – | prion | |
| iDefense Security Advisory 10.14.08: Sun Java Web Proxy Server FTP Resource Handling Heap-Based Buffer Overflow | 16 Oct 200800:00 | – | securityvulns |
###############################################################################
# OpenVAS Vulnerability Test
# $Id: gb_sun_java_web_porxy_svr_vuln_lin.nasl 7174 2017-09-18 11:48:08Z asteins $
#
# Sun Java System Web Proxy Server Two Vulnerabilities (Linux)
#
# Authors:
# Chandan S <[email protected]>
#
# Copyright:
# Copyright (c) 2008 Greenbone Networks GmbH, http://www.greenbone.net
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2
# (or any later version), as published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
###############################################################################
tag_solution = "Update to version 4.0.8 or apply patches.
http://www.sun.com/software/products/web_proxy/get_it.jsp
NOTE: Ignore this message if patch is applied already.";
tag_impact = "Successful exploitation could allow execution of arbitrary code in the context
of the server, and failed attacks may cause denial-of-service condition.
Impact Level: Application";
tag_affected = "Sun Java System Web Proxy Server versions prior to 4.0.8 on all running platform.";
tag_insight = "The flaw exists due to a boundary error in the FTP subsystem and in processing
HTTP headers. This issue resides within the code responsible for handling HTTP
GET requests.";
tag_summary = "This host has Sun Java Web Proxy Server running, which is prone
to heap buffer overflow vulnerability.";
if(description)
{
script_id(800026);
script_version("$Revision: 7174 $");
script_tag(name:"last_modification", value:"$Date: 2017-09-18 13:48:08 +0200 (Mon, 18 Sep 2017) $");
script_tag(name:"creation_date", value:"2008-10-16 18:25:33 +0200 (Thu, 16 Oct 2008)");
script_tag(name:"cvss_base", value:"10.0");
script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:C/I:C/A:C");
script_cve_id("CVE-2008-4541");
script_bugtraq_id(31691);
script_name("Sun Java System Web Proxy Server Two Vulnerabilities (Linux)");
script_xref(name : "URL" , value : "http://secunia.com/advisories/32227");
script_xref(name : "URL" , value : "http://xforce.iss.net/xforce/xfdb/45782");
script_xref(name : "URL" , value : "http://www.frsirt.com/english/advisories/2008/2781");
script_xref(name : "URL" , value : "http://sunsolve.sun.com/search/document.do?assetkey=1-66-242986-1");
script_category(ACT_GATHER_INFO);
script_copyright("Copyright (C) 2008 Greenbone Networks GmbH");
script_family("Buffer overflow");
script_require_ports("Services/www", 8081);
script_mandatory_keys("Sun-Java-System-Web-Proxy-Server/banner", "login/SSH/success");
script_dependencies("gather-package-list.nasl", "gb_get_http_banner.nasl");
script_tag(name : "impact" , value : tag_impact);
script_tag(name : "affected" , value : tag_affected);
script_tag(name : "insight" , value : tag_insight);
script_tag(name : "summary" , value : tag_summary);
script_tag(name : "solution" , value : tag_solution);
script_tag(name:"qod_type", value:"executable_version");
script_tag(name:"solution_type", value:"VendorFix");
exit(0);
}
include("http_func.inc");
include("ssh_func.inc");
include("version_func.inc");
sunPort = get_http_port(default:8081);
if(!port){
sunPort = 8081;
}
if(!get_port_state(sunPort)){
exit(0);
}
banner = get_http_banner(port:sunPort);
if(!banner){
exit(0);
}
if(banner =~ "Server: Sun-Java-System-Web-Proxy-Server/[0-3]\.0")
{
security_message(sunPort);
exit(0);
}
if(banner =~ "Server: Sun-Java-System-Web-Proxy-Server/4\.0")
{
sock = ssh_login_or_reuse_connection();
if(!sock){
exit(0);
}
sunName = find_file(file_name:"proxy-admserv/start", file_path:"/",
useregex:TRUE, regexpar:"$", sock:sock);
foreach binary_sunName (sunName)
{
binary_name = chomp(binary_sunName);
sunVer = get_bin_version(full_prog_name:binary_name, version_argv:"-version", sock:sock,
ver_pattern:"Web Proxy Server ([0-9.]+)");
if(sunVer)
{ # Grep for versions prior to 4.0.8
if(version_in_range(version:sunVer[1], test_version:"4.0", test_version2:"4.0.7")){
security_message(sunPort);
}
ssh_close_connection();
exit(0);
}
}
ssh_close_connection();
}
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