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-22205

CVE-2024-22205: Whoogle Search SSRF Vulnerability

CVE-2024-22205 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, impact, and mitigation.

Published: April 15, 2026

CVE-2024-22205 Overview

CVE-2024-22205 is a Server-Side Request Forgery (SSRF) vulnerability affecting Whoogle Search, a self-hosted metasearch engine. The vulnerability exists in the window endpoint, which fails to sanitize user-supplied input from the location variable before passing it to the send method in request.py. This allows attackers to craft GET requests to internal and external resources on behalf of the server, potentially accessing resources on internal networks that would otherwise be inaccessible from the internet.

Critical Impact

This SSRF vulnerability allows unauthenticated remote attackers to make arbitrary HTTP GET requests from the server, enabling access to internal network resources and potential data exfiltration.

Affected Products

  • Benbusby Whoogle Search versions 0.8.3 and prior
  • Self-hosted Whoogle Search instances running vulnerable versions

Discovery Timeline

  • January 23, 2024 - CVE-2024-22205 published to NVD
  • November 21, 2024 - Last updated in NVD database

Technical Details for CVE-2024-22205

Vulnerability Analysis

This Server-Side Request Forgery (SSRF) vulnerability allows attackers to abuse the Whoogle Search server to make HTTP GET requests to arbitrary destinations. The flaw exists because the window endpoint in routes.py accepts user-controlled input through the location parameter without proper validation or sanitization. This input is then passed directly to the send method in request.py (lines 339-343), which executes the HTTP request on behalf of the server.

The impact of this vulnerability is significant for organizations using Whoogle Search, as it enables attackers to probe internal network infrastructure, access internal services, and potentially exfiltrate sensitive data from systems that are not directly accessible from the internet.

Root Cause

The root cause of CVE-2024-22205 is improper input validation (CWE-918: Server-Side Request Forgery). The window endpoint accepts the location parameter directly from user input without implementing proper URL validation, allowlisting, or sanitization controls. This design flaw allows attackers to specify arbitrary URLs, including internal network addresses and localhost services.

Attack Vector

The vulnerability is exploitable over the network without requiring authentication or user interaction. An attacker can send a crafted HTTP request to the vulnerable window endpoint with a malicious location parameter pointing to internal resources. The server will then make a GET request to the specified URL and potentially return the response to the attacker.

The attack flow involves the vulnerable code path in routes.py at line 479, which passes user input to the request handling code in request.py. For detailed technical analysis, refer to the GitHub Security Advisory and the vulnerable code in request.py.

Detection Methods for CVE-2024-22205

Indicators of Compromise

  • Unusual outbound HTTP GET requests from the Whoogle Search server to internal network addresses (e.g., 127.0.0.1, 10.x.x.x, 192.168.x.x, 172.16.x.x)
  • Requests to the /window endpoint with suspicious location parameter values containing internal IP addresses or cloud metadata endpoints
  • Server logs showing connections to unexpected internal services or infrastructure endpoints
  • Anomalous traffic patterns from the Whoogle Search server to AWS metadata service (169.254.169.254) or similar cloud provider endpoints

Detection Strategies

  • Monitor web application firewall (WAF) logs for requests to the /window endpoint containing IP addresses or internal hostnames in the location parameter
  • Implement network segmentation monitoring to detect unexpected outbound connections from the Whoogle Search server
  • Deploy intrusion detection rules to alert on SSRF attack patterns targeting the vulnerable endpoint
  • Review Whoogle Search access logs for requests with URL-encoded internal addresses or localhost references

Monitoring Recommendations

  • Configure network monitoring to alert on outbound connections from the Whoogle Search server to RFC 1918 private address ranges
  • Enable detailed access logging for the Whoogle Search application to capture all requests to the /window endpoint
  • Implement DNS logging to detect requests for internal hostnames originating from the Whoogle Search server
  • Set up alerts for connections to cloud metadata endpoints from the Whoogle Search server

How to Mitigate CVE-2024-22205

Immediate Actions Required

  • Upgrade Whoogle Search to version 0.8.4 or later immediately
  • Review server logs for evidence of exploitation attempts targeting the /window endpoint
  • Audit network access controls to ensure the Whoogle Search server has minimal access to internal resources
  • Consider implementing network-level egress filtering to restrict outbound connections from the Whoogle Search server

Patch Information

The vulnerability has been addressed in Whoogle Search version 0.8.4. The fix involves proper validation and sanitization of the location parameter before processing. The patch can be reviewed in the official commit.

Organizations should update their Whoogle Search installations by pulling the latest version from the official repository or container registry.

Workarounds

  • Implement a web application firewall (WAF) rule to block requests to the /window endpoint containing internal IP addresses or suspicious URL patterns
  • Deploy network-level egress filtering to prevent the Whoogle Search server from connecting to internal network resources
  • Place the Whoogle Search server in a network segment with restricted access to sensitive internal services
  • Temporarily disable or restrict access to the /window endpoint if immediate patching is not possible
bash
# Example: Update Whoogle Search using Docker
docker pull benbusby/whoogle-search:latest
docker stop whoogle
docker rm whoogle
docker run --name whoogle -p 5000:5000 -d benbusby/whoogle-search:latest

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.30%

  • 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
  • GitHub Code Analysis

  • GitHub Code Reference

  • GitHub Code Section Overview

  • GitHub Specific Code Reference

  • GitHub Security Advisory
  • Vendor Resources
  • GitHub Commit Changes
  • Related CVEs
  • CVE-2024-22203: 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