The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2025-60566

CVE-2025-60566: D-Link DIR-600L Buffer Overflow Flaw

CVE-2025-60566 is a buffer overflow vulnerability in D-Link DIR-600L firmware affecting the formSetMACFilter function. Attackers can exploit this flaw to compromise device security. This article covers technical details, affected versions, impact, and mitigation strategies.

Updated: May 15, 2026

CVE-2025-60566 Overview

CVE-2025-60566 is a stack-based buffer overflow [CWE-121] in the D-Link DIR-600L Ax router running firmware FW116WWb01. The flaw resides in the formSetMACFilter function, where the curTime parameter is copied into a fixed-size stack buffer without proper bounds checking. An unauthenticated remote attacker can send a crafted HTTP request to trigger memory corruption on the device. Successful exploitation crashes the router's web management service, producing a denial-of-service condition that disrupts network connectivity for downstream clients.

Critical Impact

Remote, unauthenticated attackers can crash the DIR-600L web service and disrupt routing by sending an oversized curTime parameter to formSetMACFilter.

Affected Products

  • D-Link DIR-600L hardware revision Ax
  • D-Link DIR-600L firmware version FW116WWb01 (1.16WWb01)
  • Deployments exposing the device web management interface

Discovery Timeline

  • 2025-10-24 - CVE-2025-60566 published to the National Vulnerability Database
  • 2025-10-28 - Last updated in NVD database

Technical Details for CVE-2025-60566

Vulnerability Analysis

The DIR-600L web management interface exposes the formSetMACFilter handler, which processes MAC address filtering configuration submitted through the administrative UI. The handler reads the curTime request parameter and copies it into a fixed-size buffer on the stack. Because the routine performs no length validation, an attacker-controlled curTime value longer than the destination buffer overwrites adjacent stack memory, including saved return addresses.

This matches the classic stack-based buffer overflow pattern catalogued as [CWE-121]. On the MIPS-based DIR-600L platform, overwriting the saved return address corrupts the control flow of the httpd-equivalent service that hosts the web UI, terminating the process. The DIR-600L Ax is an end-of-life consumer router, and D-Link has not announced firmware updates for this model line.

Root Cause

The root cause is missing input length validation in formSetMACFilter before copying the curTime parameter into a stack-allocated buffer. The handler trusts the size of the user-supplied value rather than enforcing a maximum length, allowing adjacent stack data to be overwritten when the input exceeds buffer capacity.

Attack Vector

Exploitation occurs over the network against the router's HTTP management interface. The attack requires no authentication and no user interaction. An attacker submits a POST request to the MAC filter endpoint with an oversized curTime parameter. The resulting overflow corrupts stack memory and crashes the web service, producing an availability impact on device management and, in some configurations, on routing itself.

A proof-of-concept describing the parameter and request structure is published in a public GitHub PoC Repository.

Detection Methods for CVE-2025-60566

Indicators of Compromise

  • HTTP POST requests to the DIR-600L management interface targeting the MAC filter handler with abnormally long curTime values.
  • Unexpected restarts or crashes of the router's httpd web service, often accompanied by loss of administrative access.
  • Repeated probing of the /goform/ or formSetMACFilter endpoints from external sources.

Detection Strategies

  • Inspect HTTP request bodies bound for the router web UI for curTime parameter values that exceed expected length thresholds (for example, more than 64 bytes).
  • Alert on HTTP 5xx responses or connection resets returned by the DIR-600L management interface immediately after a POST to formSetMACFilter.
  • Correlate router uptime resets with inbound traffic to TCP port 80/443 on the device management plane.

Monitoring Recommendations

  • Forward router syslog and management-plane traffic metadata to a centralized logging platform for retention and correlation.
  • Monitor for management-interface reachability from untrusted networks, which should not be permitted in normal operation.
  • Track availability of small office and home office (SOHO) gateways and trigger alerts on repeated reboot events.

How to Mitigate CVE-2025-60566

Immediate Actions Required

  • Disable remote (WAN-side) administration on affected DIR-600L Ax devices and restrict management access to a trusted LAN segment.
  • Place the router behind a network filter that blocks inbound HTTP/HTTPS to the management interface from the internet.
  • Plan replacement of the DIR-600L Ax with a currently supported router model, as this device is end-of-life.

Patch Information

No vendor patch is referenced in the NVD entry at the time of publication. D-Link has previously declared the DIR-600L series end-of-life, and no advisory URL is associated with CVE-2025-60566. Operators should treat this device as unpatched and prioritize replacement.

Workarounds

  • Restrict access to the web management interface using firewall rules that allow only specific administrative IP addresses.
  • Segment the router onto an isolated VLAN where management traffic cannot be reached by guest or untrusted clients.
  • Disable the MAC filtering feature if not in use, and monitor for unauthorized configuration changes through the web UI.
bash
# Example: block external access to the DIR-600L management interface on an upstream firewall
iptables -A FORWARD -p tcp -d <router_ip> --dport 80 -j DROP
iptables -A FORWARD -p tcp -d <router_ip> --dport 443 -j DROP
# Allow management only from a trusted admin host
iptables -I FORWARD -p tcp -s <admin_ip> -d <router_ip> --dport 80 -j ACCEPT

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/TechDlink

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.19%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-121
  • Technical References
  • GitHub PoC Repository
  • Related CVEs
  • CVE-2026-8260: D-Link DCS-935L Buffer Overflow Vulnerability

  • CVE-2026-7851: Dlink DI-8100 Buffer Overflow Vulnerability

  • CVE-2026-7854: D-Link DI-8100 Buffer Overflow Vulnerability

  • CVE-2026-7857: D-Link DI-8100 Buffer Overflow Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English