ID OPENVAS:1361412562310806894 Type openvas Reporter Copyright (C) 2016 Greenbone Networks GmbH Modified 2020-08-24T00:00:00
Description
Detection of installed version
of Freeproxy Internet Suit.
This script sends an HTTP GET request and tries to get the version from the
response.
##############################################################################
# OpenVAS Vulnerability Test
#
# Freeproxy Internet Suite Detection
#
# Authors:
# Kashinath T <tkashinath@secpod.com>
#
# Copyright:
# Copyright (C) 2016 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.
###############################################################################
if(description)
{
script_oid("1.3.6.1.4.1.25623.1.0.806894");
script_version("2020-08-24T15:18:35+0000");
script_tag(name:"cvss_base", value:"0.0");
script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:N/I:N/A:N");
script_tag(name:"last_modification", value:"2020-08-24 15:18:35 +0000 (Mon, 24 Aug 2020)");
script_tag(name:"creation_date", value:"2016-05-17 11:03:06 +0530 (Tue, 17 May 2016)");
script_name("Freeproxy Internet Suite Detection");
script_tag(name:"summary", value:"Detection of installed version
of Freeproxy Internet Suit.
This script sends an HTTP GET request and tries to get the version from the
response.");
script_category(ACT_GATHER_INFO);
script_tag(name:"qod_type", value:"remote_banner");
script_copyright("Copyright (C) 2016 Greenbone Networks GmbH");
script_family("Product detection");
script_dependencies("find_service.nasl", "httpver.nasl", "global_settings.nasl");
script_require_ports("Services/www", 8080);
script_exclude_keys("Settings/disable_cgi_scanning");
exit(0);
}
include("http_func.inc");
include("http_keepalive.inc");
include("port_service_func.inc");
include("cpe.inc");
include("host_details.inc");
freePort = http_get_port(default:8080);
if(!rcvRes = http_get_cache( item:'/', port:freePort )){
exit(0);
}
if('Server: FreeProxy' >< rcvRes)
{
freeVer = eregmatch(pattern:"Server: FreeProxy/([0-9.]+)", string:rcvRes);
if(freeVer[1]){
version = freeVer[1];
} else {
version = "Unknown";
}
set_kb_item(name:"Freeproxy/installed", value:TRUE);
set_kb_item(name:"Freeproxy/Ver", value:version);
cpe = build_cpe(value:version, exp:"^([0-9.]+)", base:"cpe:/a:freeproxy_internet_suite:freeproxy:");
if(!cpe)
cpe= "cpe:/a:freeproxy_internet_suite:freeproxy";
register_product(cpe:cpe, location:"/", port:freePort, service:"www");
log_message(data: build_detection_report(app: "Freeproxy internet suite",
version: version,
install: "/",
cpe: cpe,
concluded: version),
port: freePort);
}
exit(0);
{"id": "OPENVAS:1361412562310806894", "type": "openvas", "bulletinFamily": "scanner", "title": "Freeproxy Internet Suite Detection", "description": "Detection of installed version\n of Freeproxy Internet Suit.\n\n This script sends an HTTP GET request and tries to get the version from the\n response.", "published": "2016-05-17T00:00:00", "modified": "2020-08-24T00:00:00", "cvss": {"score": 0.0, "vector": "NONE"}, "href": "http://plugins.openvas.org/nasl.php?oid=1361412562310806894", "reporter": "Copyright (C) 2016 Greenbone Networks GmbH", "references": [], "cvelist": [], "lastseen": "2020-10-04T15:17:28", "viewCount": 8, "enchantments": {"dependencies": {}, "score": {"value": -0.2, "vector": "NONE"}, "backreferences": {"references": [{"type": "nessus", "idList": ["GLOBAL_SETTINGS.NASL"]}]}, "exploitation": null, "vulnersScore": -0.2}, "pluginID": "1361412562310806894", "sourceData": "##############################################################################\n# OpenVAS Vulnerability Test\n#\n# Freeproxy Internet Suite Detection\n#\n# Authors:\n# Kashinath T <tkashinath@secpod.com>\n#\n# Copyright:\n# Copyright (C) 2016 Greenbone Networks GmbH, http://www.greenbone.net\n#\n# This program is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License version 2\n# (or any later version), as published by the Free Software Foundation.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program; if not, write to the Free Software\n# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.\n###############################################################################\n\nif(description)\n{\n script_oid(\"1.3.6.1.4.1.25623.1.0.806894\");\n script_version(\"2020-08-24T15:18:35+0000\");\n script_tag(name:\"cvss_base\", value:\"0.0\");\n script_tag(name:\"cvss_base_vector\", value:\"AV:N/AC:L/Au:N/C:N/I:N/A:N\");\n script_tag(name:\"last_modification\", value:\"2020-08-24 15:18:35 +0000 (Mon, 24 Aug 2020)\");\n script_tag(name:\"creation_date\", value:\"2016-05-17 11:03:06 +0530 (Tue, 17 May 2016)\");\n script_name(\"Freeproxy Internet Suite Detection\");\n\n script_tag(name:\"summary\", value:\"Detection of installed version\n of Freeproxy Internet Suit.\n\n This script sends an HTTP GET request and tries to get the version from the\n response.\");\n\n script_category(ACT_GATHER_INFO);\n script_tag(name:\"qod_type\", value:\"remote_banner\");\n script_copyright(\"Copyright (C) 2016 Greenbone Networks GmbH\");\n script_family(\"Product detection\");\n script_dependencies(\"find_service.nasl\", \"httpver.nasl\", \"global_settings.nasl\");\n script_require_ports(\"Services/www\", 8080);\n script_exclude_keys(\"Settings/disable_cgi_scanning\");\n exit(0);\n}\n\ninclude(\"http_func.inc\");\ninclude(\"http_keepalive.inc\");\ninclude(\"port_service_func.inc\");\ninclude(\"cpe.inc\");\ninclude(\"host_details.inc\");\n\nfreePort = http_get_port(default:8080);\nif(!rcvRes = http_get_cache( item:'/', port:freePort )){\n exit(0);\n}\n\nif('Server: FreeProxy' >< rcvRes)\n{\n freeVer = eregmatch(pattern:\"Server: FreeProxy/([0-9.]+)\", string:rcvRes);\n\n if(freeVer[1]){\n version = freeVer[1];\n } else {\n version = \"Unknown\";\n }\n\n set_kb_item(name:\"Freeproxy/installed\", value:TRUE);\n set_kb_item(name:\"Freeproxy/Ver\", value:version);\n\n cpe = build_cpe(value:version, exp:\"^([0-9.]+)\", base:\"cpe:/a:freeproxy_internet_suite:freeproxy:\");\n if(!cpe)\n cpe= \"cpe:/a:freeproxy_internet_suite:freeproxy\";\n\n register_product(cpe:cpe, location:\"/\", port:freePort, service:\"www\");\n\n log_message(data: build_detection_report(app: \"Freeproxy internet suite\",\n version: version,\n install: \"/\",\n cpe: cpe,\n concluded: version),\n port: freePort);\n}\n\nexit(0);\n", "naslFamily": "Product detection", "immutableFields": [], "cvss2": {}, "cvss3": {}, "_state": {"dependencies": 1646954519}}