Lucene search
K

EGP detection

🗓️ 03 Nov 2005 00:00:00Reported by Copyright (C) 2005 Michel ArboiType 
openvas
 openvas
🔗 plugins.openvas.org👁 12 Views

EGP detection and obsolescenc

Code
# SPDX-FileCopyrightText: 2005 Michel Arboi
# 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

# See RFC 827 & RFC 888

if(description)
{
  script_oid("1.3.6.1.4.1.25623.1.0.11908");
  script_version("2023-08-01T13:29:10+0000");
  script_tag(name:"last_modification", value:"2023-08-01 13:29:10 +0000 (Tue, 01 Aug 2023)");
  script_tag(name:"creation_date", value:"2005-11-03 14:08:04 +0100 (Thu, 03 Nov 2005)");
  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_name("EGP detection");
  script_category(ACT_GATHER_INFO);
  script_copyright("Copyright (C) 2005 Michel Arboi");
  script_family("Service detection");
  script_dependencies("global_settings.nasl");
  script_exclude_keys("keys/islocalhost", "keys/TARGET_IS_IPV6");

  script_tag(name:"solution", value:"If this protocol is not needed, disable it or filter incoming traffic going
  to IP protocol #8");

  script_tag(name:"summary", value:"The remote host is running EGP, an obsolete routing protocol.");

  script_tag(name:"qod_type", value:"remote_banner");
  script_tag(name:"solution_type", value:"VendorFix");

  exit(0);
}

include("network_func.inc");

if(islocalhost() || TARGET_IS_IPV6() )
  exit(0);

s = this_host();
v = eregmatch(pattern:"^([0-9]+)\.([0-9]+)\.([0-9]+)\.([0-9])+$", string:s);
if(isnull(v))
  exit(0);

for(i = 1; i <=4; i++)
  a[i] = int(v[i]);

a1 = rand() % 256; a2 = rand() % 256;
s1 = rand() % 256; s2 = rand() % 256;

r = raw_string( 2,      # EGP version
                3,      # Type
                0,      # Code = Neighbor Acquisition Request
                0,      # Info (not used here)
                0, 0,   # checksum
                a1, a2, # Autonomous system
                s1, s2, # Identification
                0, 30, # NR Hello Interval
                0, 120 # NR Poll Interval
);

ck = ip_checksum(data:r);
r2 = insstr(r, ck, 4, 5);

egp = forge_ip_packet(ip_v:4, ip_hl:5, ip_tos:0, ip_p:8, ip_ttl:64,
                      ip_off:0, ip_src:this_host(), data:r2);

f = "ip proto 8 and src " + get_host_ip();
for( i = 0; i < 3; i++ ) {
  r = send_packet(egp, pcap_active:TRUE, pcap_filter:f, pcap_timeout:1);
  if(r)
    break;
}

if(isnull(r))
  exit(0);

hl = ord(r[0]) & 0xF; hl *= 4;
egp = substr(r, hl);
if (ord(egp[0]) == 2 && ord(egp[1]) == 3 && ord(egp[2]) <= 4)
  log_message(port:0, proto:"egp");

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

01 Aug 2023 00:00Current
7.1High risk
Vulners AI Score7.1
12