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
    • 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-2020-28168

CVE-2020-28168: Axios Axios SSRF Vulnerability

CVE-2020-28168 is a Server-Side Request Forgery flaw in Axios NPM package 0.21.0 that allows attackers to bypass proxy restrictions through URL redirects. This article covers technical details, affected versions, and mitigation.

Published: March 11, 2026

CVE-2020-28168 Overview

CVE-2020-28168 is a Server-Side Request Forgery (SSRF) vulnerability affecting Axios, a popular promise-based HTTP client for Node.js and browsers. The vulnerability exists in Axios NPM package version 0.21.0 and earlier, where an attacker can bypass proxy configurations by providing a URL that responds with a redirect to a restricted host or IP address.

This SSRF vulnerability allows malicious actors to craft requests that circumvent intended proxy restrictions, potentially enabling access to internal network resources, cloud metadata services, or other protected endpoints that should not be directly accessible.

Critical Impact

Attackers can bypass proxy security controls to access internal network resources, potentially exposing sensitive internal services, cloud metadata endpoints, and restricted network segments.

Affected Products

  • Axios NPM package versions prior to 0.21.1
  • Siemens SINEC INS (all versions prior to patch)
  • Siemens SINEC INS 1.0 SP1

Discovery Timeline

  • 2020-11-06 - CVE-2020-28168 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2020-28168

Vulnerability Analysis

The SSRF vulnerability in Axios arises from improper handling of HTTP redirects when a proxy is configured. When an application uses Axios with a proxy setting to control outbound requests, the library fails to properly validate redirect destinations. This allows an attacker to provide an initial URL that passes proxy validation but returns an HTTP redirect (3xx status code) pointing to an internal or restricted host.

The vulnerable code path processes the redirect automatically without re-applying the proxy restrictions, effectively bypassing the security boundary. This is classified as CWE-918 (Server-Side Request Forgery), which represents a flaw where the application can be tricked into making requests to unintended destinations.

Root Cause

The root cause is the lack of redirect destination validation when proxy configurations are in place. Axios processes HTTP redirects by following them automatically, but the redirect handler does not verify whether the new destination URL should also be subject to proxy restrictions. This creates a bypass scenario where the initial request goes through the proxy, but subsequent redirected requests may not.

Attack Vector

The attack is executed over the network without requiring authentication or user interaction, though the attack complexity is considered high due to specific conditions that must be met:

  1. The target application must use Axios with a proxy configuration
  2. The attacker must control a remote server that can issue HTTP redirects
  3. The attacker's server must respond with a redirect to the desired internal target

An attacker would configure their external server to respond with an HTTP 301 or 302 redirect pointing to an internal resource such as http://169.254.169.254/latest/meta-data/ (AWS metadata service) or other internal endpoints. When the vulnerable Axios client follows this redirect, it bypasses the proxy and directly connects to the internal resource.

Detection Methods for CVE-2020-28168

Indicators of Compromise

  • Outbound HTTP requests from applications that result in connections to internal IP ranges (10.x.x.x, 172.16.x.x-172.31.x.x, 192.168.x.x)
  • Connections to cloud metadata endpoints (169.254.169.254) from web-facing applications
  • HTTP redirect chains in application logs where initial external URLs lead to internal destinations
  • Unexpected traffic patterns from Node.js applications to internal services

Detection Strategies

  • Monitor network traffic for HTTP 3xx redirects that lead to internal IP addresses
  • Implement egress filtering rules that alert on Node.js processes connecting to internal networks
  • Review application dependencies for vulnerable Axios versions using npm audit or similar tools
  • Deploy web application firewalls (WAF) configured to detect SSRF patterns

Monitoring Recommendations

  • Enable detailed HTTP logging in proxy infrastructure to capture redirect chains
  • Configure SIEM rules to correlate outbound HTTP requests with subsequent internal connections
  • Implement application-level logging for all HTTP client operations
  • Monitor cloud provider logs for metadata service access from application servers

How to Mitigate CVE-2020-28168

Immediate Actions Required

  • Upgrade Axios to version 0.21.1 or later which contains the fix for this vulnerability
  • Audit all Node.js applications for Axios dependency versions using npm list axios
  • Review and update package-lock.json files to ensure patched versions are locked
  • Apply Siemens security patches for SINEC INS deployments as outlined in the Siemens Security Advisory SSA-637483

Patch Information

The vulnerability is addressed in Axios version 0.21.1 and later releases. The fix ensures that proxy configurations are properly enforced across HTTP redirects, preventing the bypass scenario. Organizations should update their package.json to require axios >= 0.21.1 and run npm update to apply the patch.

For additional technical details on the vulnerability and fix, refer to the GitHub Issue Discussion.

Workarounds

  • Disable automatic redirect following in Axios by setting maxRedirects: 0 in request configurations
  • Implement application-level validation of redirect destinations before following them
  • Deploy network segmentation to limit the impact of potential SSRF exploitation
  • Configure firewall rules to block direct connections from application servers to sensitive internal services
bash
# Update Axios to patched version
npm update axios

# Verify installed version
npm list axios

# Audit for known vulnerabilities
npm audit

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

  • Vulnerability Details
  • TypeSSRF

  • Vendor/TechAxios

  • SeverityMEDIUM

  • CVSS Score5.9

  • EPSS Probability0.45%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-918
  • Technical References
  • Siemens Security Advisory SSA-637483

  • GitHub Issue Discussion

  • Apache Druid Commit Thread

  • Apache Druid Commit Thread

  • Apache Druid Commit Thread
  • Related CVEs
  • CVE-2025-27152: Axios HTTP Client SSRF Vulnerability

  • CVE-2024-39338: Axios SSRF Vulnerability

  • CVE-2026-25639: Axios HTTP Client DoS Vulnerability

  • CVE-2025-58754: Axios Axios DoS Vulnerability
Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now 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