Lucene search

K

DCN HELLO detection

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

The remote IP stack answers to an obsolete protocol. The host is running HELLO, an obsolete routing protocol and should be disabled or incoming traffic filtered to IP protocol #63

Show more

5 of 5AI Insights are available for you today

Leverage the power of AI to quickly understand vulnerabilities, impacts, and exploitability

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 831 & gated source (hello.h)
# http://www.zvon.org/tmRFC/RFC891/Output/chapter2.html

if(description)
{
  script_oid("1.3.6.1.4.1.25623.1.0.11913");
  script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:N/I:N/A:N");
  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_name("DCN HELLO 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:"summary", value:"The remote IP stack answers to an obsolete protocol.

  Description :

  The remote host is running HELLO, an obsolete routing protocol.
  If possible, this IP protocol should be disabled.");

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

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

  exit(0);
}

#
#                         1                   0
#               5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
#          --- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
# Fixed        |           Checksum            |
# Area         +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
#              |             Date              |
#              +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
#              |                               |
#              +              Time             +
#              |                               |
#              +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
#              |           Timestamp           |
#              +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
#              |     Offset    |   Hosts (n)   |
#          --- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
# Host         |          Delay Host 0         |
# Area         +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
#              |         Offset Host 0         |
#              +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
#             ...                             ...
#              +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
#              |         Delay Host n-1        |
#              +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
#              |         Offset Host n-1       |
#          --- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
#
#                Figure 3. HELLO Message Format
#

include("network_func.inc");
##include("dump.inc");

if( TARGET_IS_IPV6() ) exit( 0 );
if( islocalhost() ) 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;

# Date is in RT-11 format, i.e. little endian, AFAIK. The date overflows
# in 2003 (!) so I suggest to tell them that we are at 2003-12-31
# The source of gated gives more information than RFC 891. 2003-12-31 would
# give: 0x33FF; adding flags 0xC000 (Clock is unsynchronized) gives 0xF3FF

ms = ms_since_midnight();     # milliseconds since midnight
if( isnull( ms ) ) ms = rand();

r = raw_string( 0, 0,         # Checksum
                0xF3, 0xFF ); # Date
r += htons( n:ms );           # Time = ms since midnight
r += raw_string( 0, 0,        # Timestamp
                 0,           # Offset (?)
                 0 );         # Nb of hosts ??

ck = ip_checksum( data:r );
r2 = insstr( r, ck, 0, 1 );

# HELLO is protocol 63
egp = forge_ip_packet( ip_v:4, ip_hl:5, ip_tos:0, ip_p:63, ip_ttl:64,
                       ip_off:0, ip_src:this_host(), data:r2 );

f = "ip proto 63 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( 99 );

##hl = ord( r[0] ) & 0xF; hl *= 4;
##hello = substr( r, hl );
##dump( dtitle:"hello", ddata:hello );

#ck = ip_checksum( data:hello );

log_message( port:0, proto:"hello" );

exit( 0 );

Transform Your Security Services

Elevate your offerings with Vulners' advanced Vulnerability Intelligence. Contact us for a demo and discover the difference comprehensive, actionable intelligence can make in your security strategy.

Book a live demo
03 Nov 2005 00:00Current
7High risk
Vulners AI Score7
19
.json
Report