TalentSoft Web+ Version Report
🗓️ 03 Nov 2005 00:00:00Reported by Copyright (C) 2000 SecuriTeamType
openvas🔗 plugins.openvas.org👁 27 Views
# SPDX-FileCopyrightText: 2000 SecuriTeam
# Some text descriptions might be excerpted from (a) referenced
# source(s), and are Copyright (C) by the respective right holder(s).
#
# SPDX-License-Identifier: GPL-2.0-only
if(description)
{
script_oid("1.3.6.1.4.1.25623.1.0.10373");
script_version("2025-12-17T05:46:28+0000");
script_tag(name:"last_modification", value:"2025-12-17 05:46:28 +0000 (Wed, 17 Dec 2025)");
script_tag(name:"creation_date", value:"2005-11-03 14:08:04 +0100 (Thu, 03 Nov 2005)");
script_tag(name:"cvss_base", value:"3.3");
script_tag(name:"cvss_base_vector", value:"AV:L/AC:M/Au:N/C:N/I:P/A:P");
script_name("TalentSoft Web+ Version Report");
script_category(ACT_GATHER_INFO);
script_copyright("Copyright (C) 2000 SecuriTeam");
script_family("Web application abuses");
script_dependencies("find_service.nasl", "no404.nasl", "webmirror.nasl", "DDI_Directory_Scanner.nasl", "os_detection.nasl", "global_settings.nasl");
script_require_ports("Services/www", 80);
script_exclude_keys("Settings/disable_cgi_scanning");
script_tag(name:"affected", value:"This bug is known to exist in Web+ 4.X as of March 1999, and probably exists
in all previous versions as well.");
script_tag(name:"summary", value:"This plug-in detects the version of Web+ CGI. The Web+ CGI has a known
vulnerability that enables a remote attacker to gain access to local files.
This test in itself does not verify the vulnerability but rather tries to
discover the version of Web+ which is installed.");
script_tag(name:"solution", value:"No known solution was made available for at least one year since the disclosure
of this vulnerability. Likely none will be provided anymore. General solution options are to upgrade to a newer
release, disable respective features, remove the product or replace the product by another one.");
script_tag(name:"qod_type", value:"remote_banner");
script_tag(name:"solution_type", value:"WillNotFix");
exit(0);
}
include("http_func.inc");
include("http_keepalive.inc");
include("port_service_func.inc");
include("list_array_func.inc");
include("host_details.inc");
include("os_func.inc");
function extract_version( result, port ) {
resultrecv = strstr(result, "Version: </b>: ");
resultsub = strstr(resultrecv, string("\n"));
resultrecv = resultrecv - resultsub;
resultrecv = resultrecv - "</b>";
banner = banner + resultrecv;
banner = banner + string("\n");
resultrecv = strstr(result, "<br><b>Web+ Server Compile Number</b>: ");
resultsub = strstr(resultrecv, string("\n"));
resultrecv = resultrecv - resultsub;
resultrecv = resultrecv - "<br>";
resultrecv = resultrecv - "<b>";
resultrecv = resultrecv - "</b>";
banner = banner + resultrecv;
banner = banner + string("\n");
resultrecv = strstr(result, "<br><b>Web+ Client Compile Number</b>: ");
resultsub = strstr(resultrecv, string("\n"));
resultrecv = resultrecv - resultsub;
resultrecv = resultrecv - "<br>";
resultrecv = resultrecv - "<b>";
resultrecv = resultrecv - "</b>";
banner = banner + resultrecv;
banner = banner + string("\n");
resultrecv = strstr(result, "<br><b>Operating System</b>: ");
resultsub = strstr(resultrecv, string("\n"));
resultrecv = resultrecv - resultsub;
resultrecv = resultrecv - "<br>";
resultrecv = resultrecv - "<b>";
resultrecv = resultrecv - "</b>";
banner = banner + resultrecv;
banner = banner + string("\n");
resultrecv = strstr(result, "Web+ Server Version");
resultsub = strstr(resultrecv, string("\n"));
resultrecv = resultrecv - resultsub;
resultrecv = resultrecv - "<B>";
resultrecv = resultrecv - "</B>";
banner = banner + resultrecv;
banner = banner + string("\n");
resultrecv = strstr(result, "Web+ Monitor Server Version");
resultsub = strstr(resultrecv, string("\n"));
resultrecv = resultrecv - resultsub;
resultrecv = resultrecv - "<B>";
resultrecv = resultrecv - "</B>";
banner = banner + resultrecv;
banner = banner + string("\n");
resultrecv = strstr(result, "Web+ Client Version");
resultsub = strstr(resultrecv, string("\n"));
resultrecv = resultrecv - resultsub;
resultrecv = resultrecv - "<B>";
resultrecv = resultrecv - "</B>";
banner = banner + resultrecv;
banner = banner + string("\n");
resultrecv = strstr(result, "Release Date");
resultsub = strstr(resultrecv, string("\n"));
resultrecv = resultrecv - resultsub;
resultrecv = resultrecv - "<B>";
resultrecv = resultrecv - "</B>";
banner = banner + resultrecv;
banner = banner + string("\n");
resultrecv = strstr(result, "User Name");
resultsub = strstr(resultrecv, string("\n"));
resultrecv = resultrecv - resultsub;
resultrecv = resultrecv - "<B>";
resultrecv = resultrecv - "</B>";
resultrecv = resultrecv - "<i>";
resultrecv = resultrecv - "</i>";
resultrecv = resultrecv - "<BR>";
banner = banner + resultrecv;
banner = banner + string("\n");
resultrecv = strstr(result, "Company Name");
resultsub = strstr(resultrecv, string("\n"));
resultrecv = resultrecv - resultsub;
resultrecv = resultrecv - "<B>";
resultrecv = resultrecv - "</B>";
resultrecv = resultrecv - "<i>";
resultrecv = resultrecv - "</i>";
resultrecv = resultrecv - "<BR>";
banner = banner + resultrecv;
banner = banner + string("\n");
resultrecv = strstr(result, "Web Server IP Address");
resultsub = strstr(resultrecv, string("\n"));
resultrecv = resultrecv - resultsub;
resultrecv = resultrecv - "<B>";
resultrecv = resultrecv - "</B>";
resultrecv = resultrecv - " </CENTER>";
banner = banner + resultrecv;
banner = banner + string("\n");
resultrecv = strstr(result, "Web Server Domain Name");
resultsub = strstr(resultrecv, string("\n"));
resultrecv = resultrecv - resultsub;
resultrecv = resultrecv - "</B>";
resultrecv = resultrecv - " </CENTER>";
banner = banner + resultrecv;
banner = banner + string("\n");
security_message( port:port, data:banner );
exit( 0 );
}
if( os_host_runs( "Windows" ) == "yes" )
files = make_list( "/webplus.exe" );
else if( os_host_runs( "Linux" ) == "yes" )
files = make_list( "/webplus" );
else
files = make_list( "/webplus", "/webplus.exe" );
port = http_get_port( default:80 );
foreach dir( make_list_unique( "/", http_cgi_dirs( port:port ) ) ) {
if( dir == "/" ) dir = "";
foreach file( files ) {
url = dir + file + "?about";
req = http_get( item:url, port:port );
res = http_keepalive_send_recv( port:port, data:req );
if( "TalentSoft Web+" >< res || "TalentSoft Web" >< res ) {
extract_version( result:res, port:port );
}
}
}
exit( 0 );
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
17 Dec 2025 00:00Current
6.8Medium risk
Vulners AI Score6.8