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-2024-22203

CVE-2024-22203: Whoogle Search SSRF Vulnerability

CVE-2024-22203 is a server-side request forgery flaw in Whoogle Search allowing attackers to craft GET requests to internal resources. This article covers technical details, affected versions, and mitigation.

Published: April 8, 2026

CVE-2024-22203 Overview

CVE-2024-22203 is a Server-Side Request Forgery (SSRF) vulnerability in Whoogle Search, a self-hosted metasearch engine. In versions prior to 0.8.4, the element method in app/routes.py fails to validate user-controlled src_type and element_url variables before passing them to the send method in request.py. This allows attackers to craft arbitrary GET requests to both internal and external resources on behalf of the server.

Critical Impact

This SSRF vulnerability enables attackers to access internal network resources that the server can reach, potentially exposing sensitive internal services, cloud metadata endpoints, and other protected resources that are not directly accessible from the internet.

Affected Products

  • Benbusby Whoogle Search versions prior to 0.8.4
  • Self-hosted Whoogle Search instances running vulnerable versions
  • Docker deployments of Whoogle Search using pre-0.8.4 images

Discovery Timeline

  • 2024-01-23 - CVE-2024-22203 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2024-22203

Vulnerability Analysis

This Server-Side Request Forgery vulnerability exists because the application accepts user-supplied input for URL parameters without proper validation or sanitization. The element method in the routing module directly processes the src_type and element_url parameters from incoming requests. These values are then used to construct and execute HTTP GET requests through the send method in the request handling module.

The vulnerability is classified under CWE-918 (Server-Side Request Forgery). The attack can be executed remotely over the network without requiring any authentication or user interaction. Successful exploitation could lead to complete compromise of confidentiality, integrity, and availability of internal resources accessible by the Whoogle server.

Root Cause

The root cause of this vulnerability is insufficient input validation in the element method within app/routes.py. The application fails to implement proper URL validation, allowlisting, or blocklisting mechanisms to restrict the destinations of outgoing requests. When user-controlled data is passed directly to the send method on lines 339-343 in request.py, the server blindly executes requests to arbitrary URLs specified by the attacker.

Attack Vector

An attacker can exploit this vulnerability by sending crafted HTTP requests to a vulnerable Whoogle Search instance with malicious src_type and element_url parameter values. The attack vector operates as follows:

  1. The attacker identifies a vulnerable Whoogle Search instance accessible over the network
  2. The attacker crafts a request containing a malicious URL pointing to an internal resource (e.g., cloud metadata endpoints like http://169.254.169.254/, internal admin panels, or other protected services)
  3. The Whoogle server processes the request and makes an outbound HTTP GET request to the attacker-specified URL
  4. The response from the internal resource is potentially returned to the attacker, disclosing sensitive information

The vulnerability allows attackers to scan internal networks, access cloud provider metadata services, interact with internal APIs, and potentially pivot to other attacks against the internal infrastructure. For detailed technical information, see the GitHub Security Advisory for the complete analysis.

Detection Methods for CVE-2024-22203

Indicators of Compromise

  • Unusual outbound HTTP requests from the Whoogle server to internal IP ranges (10.x.x.x, 172.16.x.x, 192.168.x.x)
  • Requests to cloud metadata endpoints such as 169.254.169.254 originating from the application
  • Anomalous access patterns to the /element endpoint with suspicious URL parameters
  • Server logs showing requests to internal services or localhost addresses

Detection Strategies

  • Implement network monitoring to detect outbound connections from the Whoogle server to internal network ranges or cloud metadata IPs
  • Deploy web application firewall (WAF) rules to identify and block requests containing internal IP addresses or localhost references in URL parameters
  • Monitor application logs for the element endpoint with unusual element_url parameter values
  • Use SentinelOne Singularity to detect abnormal network behavior patterns indicative of SSRF exploitation

Monitoring Recommendations

  • Enable verbose logging for all HTTP requests handled by the Whoogle application
  • Configure alerts for outbound connections to RFC 1918 private address ranges from the application server
  • Implement egress filtering and monitor for policy violations from the Whoogle server
  • Regularly audit network traffic patterns from self-hosted applications to detect potential SSRF activity

How to Mitigate CVE-2024-22203

Immediate Actions Required

  • Upgrade Whoogle Search to version 0.8.4 or later immediately
  • If immediate upgrade is not possible, restrict network access to the vulnerable instance
  • Implement network segmentation to limit the server's access to internal resources
  • Review logs for any signs of prior exploitation attempts

Patch Information

The vulnerability has been fixed in Whoogle Search version 0.8.4. The patch introduces proper input validation for the src_type and element_url parameters to prevent arbitrary URL requests. The fix is available in commit 3a2e0b262e4a076a20416b45e6b6f23fd265aeda. Organizations should update their Whoogle Search installations by pulling the latest version from the official repository or updating their Docker images to use the patched release.

Workarounds

  • Implement network-level controls to block outbound requests from the Whoogle server to internal IP ranges and cloud metadata endpoints
  • Deploy a reverse proxy with URL filtering capabilities to inspect and block malicious requests before they reach the application
  • Restrict the Whoogle server's network access using firewall rules to only allow necessary external communications
  • Consider running Whoogle in an isolated network segment with no access to sensitive internal resources
bash
# Example iptables rules to block SSRF to internal networks
iptables -A OUTPUT -m owner --uid-owner whoogle -d 10.0.0.0/8 -j DROP
iptables -A OUTPUT -m owner --uid-owner whoogle -d 172.16.0.0/12 -j DROP
iptables -A OUTPUT -m owner --uid-owner whoogle -d 192.168.0.0/16 -j DROP
iptables -A OUTPUT -m owner --uid-owner whoogle -d 169.254.169.254 -j DROP

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

  • Vulnerability Details
  • TypeSSRF

  • Vendor/TechBenbusby Whoogle Search

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability0.44%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-918
  • Technical References
  • Whoogle Search Code Snippet

  • Whoogle Search Code Snippet

  • Whoogle Search Code Snippet

  • Whoogle Search Code Snippet

  • Whoogle Search Code Snippet

  • GitHub Security Advisory
  • Vendor Resources
  • Whoogle Search Commit
  • Related CVEs
  • CVE-2024-22205: Whoogle Search SSRF Vulnerability
Default Legacy - Prefooter | 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