Lucene search
+L

GigaTribe Detection

🗓️ 28 Jan 2009 00:00:00Reported by TenableType 
nessus
 nessus
🔗 www.tenable.com👁 18 Views

The remote web server is from GigaTribe, a private peer-to-peer file sharing applicatio

Refs
Code
SourceLink
gigatribewww.gigatribe.com/en/about
#
# (C) Tenable Network Security, Inc.
#


include("compat.inc");

if(description)
{
  script_id(35468);
  script_version("1.9");
 
 script_set_attribute(attribute:"synopsis", value:
"The remote web server appears to be used for peer-to-peer file
sharing." );
 script_set_attribute(attribute:"description", value:
"According to its banner, the remote web server is from GigaTribe, a
private peer-to-peer file sharing application." );
 script_set_attribute(attribute:"see_also", value:"https://www.gigatribe.com/en/about" );
 script_set_attribute(attribute:"solution", value:
"Make sure use of this software is compliant with your organization's
acceptable use and security policies." );
 script_set_attribute(attribute:"risk_factor", value:"None" );
 script_set_attribute(attribute:"plugin_publication_date", value: "2009/01/28");
 script_set_attribute(attribute:"plugin_type", value: "remote");
 script_cvs_date("Date: 2019/11/22");
 script_set_attribute(attribute:"cpe", value:"x-cpe:/a:gigatribe:gigatribe");
 script_set_attribute(attribute:"asset_inventory", value:"True");
 script_end_attributes();

  script_name(english: "GigaTribe Detection");
  script_summary(english: "Look for GigaTribe web server banner");
  script_category(ACT_GATHER_INFO);
 
  script_copyright(english:"This script is Copyright (C) 2009-2019 and is owned by Tenable, Inc. or an Affiliate thereof.");
  script_family(english:"Peer-To-Peer File Sharing");
  script_dependencie("http_version.nasl");
  script_require_ports("Services/www", 3728);
  exit(0);
}

#
include("global_settings.inc");
include ("misc_func.inc");
include ("http.inc");

port = get_http_port(default: 3728);

banner = get_http_banner(port:port, exit_on_fail: 1);
if ("Server:" >!< banner) exit(0, "No HTTP Server header on port "+port+".");

server = strstr(banner, "Server:");
server  = server - strstr(server, '\r\n');
if ("GigaTribe/" >!< server) exit(0);

version = strstr(server, "GigaTribe/") - "GigaTribe/";
if (version !~ "^[0-9][0-9.]+") version = "unknown";
set_kb_item(name:'gigatribe/version/'+port, value:version);

if (report_verbosity)
{
  if (version == "unknown") report = "An unknown version of GigaTribe";
  else                      report = "GigaTribe version " + version;

  report = string(
    "\n",
    report, " appears to be running on the remote host\n",
    "based on the following Server response header :\n",
    "\n",
    "  ", server, "\n"
  );
  security_note(port:port, extra:report);
}
else security_note(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

22 Nov 2019 00:00Current
5.5Medium risk
Vulners AI Score5.5
18