| Source | Link |
|---|---|
| forum | www.forum.snitz.com/ |
#
# (C) Tenable Network Security, Inc.
#
include("compat.inc");
if (description)
{
script_id(40469);
script_version("1.17");
script_set_attribute(attribute:"plugin_modification_date", value:"2022/10/12");
script_name(english:"Snitz Forums 2000 Detection");
script_set_attribute(attribute:"synopsis", value:
"An ASP-based forum is running on the remote web server.");
script_set_attribute(attribute:"description", value:
"Snitz Forums 2000, a free discussion forum application written in ASP,
was detected on the remote host.");
script_set_attribute(attribute:"see_also", value:"https://forum.snitz.com/");
script_set_attribute(attribute:"solution", value:
"n/a");
script_set_attribute(attribute:"risk_factor", value:"None");
script_set_attribute(attribute:"plugin_publication_date", value:"2009/08/03");
script_set_attribute(attribute:"plugin_type", value:"remote");
script_set_attribute(attribute:"asset_inventory", value:"True");
script_set_attribute(attribute:"asset_inventory_category", value:"software_enumeration");
script_set_attribute(attribute:"cpe", value:"cpe:/a:snitz_communications:snitz_forums_2000");
script_set_attribute(attribute:"thorough_tests", value:"true");
script_end_attributes();
script_category(ACT_GATHER_INFO);
script_family(english:"CGI abuses");
script_copyright(english:"This script is Copyright (C) 2009-2022 and is owned by Tenable, Inc. or an Affiliate thereof.");
script_dependencies("http_version.nasl");
script_require_keys("www/ASP");
script_exclude_keys("Settings/disable_cgi_scanning");
script_require_ports("Services/www", 80);
exit(0);
}
include("audit.inc");
include("global_settings.inc");
include("misc_func.inc");
include("http.inc");
include("install_func.inc");
port = get_http_port(default:80, asp: 1);
dirs = cgi_dirs();
if (thorough_tests) dirs = list_uniq(make_list(dirs, '/forum'));
# Versions usually look like '3.4.07', but some look like 'v3rc2'
pattern = '<acronym title="Powered By: Snitz Forums 2000 Version ([a-z0-9.]+)">';
installs = make_array();
# Looks for evidence of Snitz in all CGI dirs
foreach dir (dirs)
{
url = string(dir, '/default.asp');
res = http_get_cache(item:url, port:port, exit_on_fail: 1);
match = eregmatch(string:res, pattern:pattern, icase:TRUE);
if (match)
{
ver = match[1];
if (dir == "") dir = "/";
set_kb_item(
name:string("www/", port, "/snitz"),
value:string(ver, " under ", dir)
);
set_kb_item(name:"www/snitz", value:TRUE);
if (installs[ver]) installs[ver] += ';' + dir;
else installs[ver] = dir;
register_install(
app_name:"Snitz Forums 2000",
vendor : 'Snitz Communications',
product : 'Snitz Forums 2000',
path:dir,
version:ver,
port:port,
cpe: "cpe:/a:snitz_communications:snitz_forums_2000");
}
# Scan for multiple installations only if the "Perform thorough tests" setting is checked.
if (max_index(keys(installs)) && !thorough_tests) break;
}
# Report findings.
if (max_index(keys(installs)))
{
if (report_verbosity > 0)
{
info = "";
n = 0;
foreach ver (sort(keys(installs)))
{
info += ' Version : ' + ver + '\n';
foreach dir (sort(split(installs[ver], sep:";", keep:FALSE)))
{
if (dir == '/') url = dir;
else url = dir + '/';
info += ' URL : ' + build_url(port:port, qs:url) + '\n';
n++;
}
info += '\n';
}
report = '\nThe following instance';
if (n == 1) report += ' of Snitz Forums 2000 was';
else report += 's of Snitz Forums 2000 were';
report += ' detected on the remote host :\n\n' + info;
security_note(port:port, extra:report);
}
else security_note(port);
}
else exit(0, 'Snitz Forums 2000 was not detected on port ' + port + '.');
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