| Source | Link |
|---|---|
| nessus | www.nessus.org/u |
#
# This script was written by Sullo ([email protected])
#
# Changes by Tenable:
# - Changed family, output formatting (9/2/09)
# - Revised plugin title (9/18/09)
# - Replaced URL (6/4/13)
include("compat.inc");
if(description)
{
script_id(11220);
script_version ("1.14");
script_set_attribute(attribute:"plugin_modification_date", value:"2020/06/12");
script_name(english:"Netscape / iPlanet .perf Remote Information Disclosure");
script_set_attribute(attribute:"synopsis", value:
"The remote web server is affected by an information disclosure
vulnerability." );
script_set_attribute(attribute:"description", value:
"Requesting the URI /.perf gives information about
the currently running Netscape/iPlanet web server." );
# http://web.archive.org/web/20040328194219/http://mon15ny450.doubleclick.net/SiteScope/docs/iPlanetServerMon.htm
script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?bedb7504" );
script_set_attribute(attribute:"solution", value:
"If you don't use this feature, server monitoring should be
disabled in the magnus.conf file or web server admin." );
script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:P/I:N/A:N");
script_set_attribute(attribute:"plugin_publication_date", value: "2003/02/06");
script_set_attribute(attribute:"plugin_type", value:"remote");
script_end_attributes();
script_summary(english:"Makes a request like http://www.example.com/.perf");
script_category(ACT_GATHER_INFO);
script_copyright(english:"This script is Copyright (C) 2003-2020 Sullo");
script_family(english:"Web Servers");
script_dependencie("find_service1.nasl", "http_version.nasl");
script_require_ports("Services/www", 80);
script_require_keys("www/netscape-commerce", "www/netscape-fasttrack", "www/iplanet");
exit(0);
}
#
# The script code starts here
#
include("global_settings.inc");
include("http_func.inc");
port = get_http_port(default:80, embedded:TRUE);
str = "ListenSocket";
if(get_port_state(port))
{
soc = http_open_socket(port);
if(soc)
{
buffer = http_get(item:"/.perf", port:port);
send(socket:soc, data:buffer);
data = http_recv(socket:soc);
if( str >< data )
{
security_warning(port);
}
http_close_socket(soc);
}
}
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