Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-47241

CVE-2025-47241: Browser Use URL Parsing Vulnerability

CVE-2025-47241 is a URL parsing flaw in Browser Use before version 0.1.45 that mishandles allowed_domains through userinfo in the authority component. This article covers technical details, affected versions, and mitigation.

Updated: January 22, 2026

CVE-2025-47241 Overview

CVE-2025-47241 is an Input Validation Error vulnerability affecting Browser Use (browser-use), an open-source browser automation library. The vulnerability stems from improper URL parsing of the allowed_domains configuration, where the userinfo component within the URL authority can be manipulated to bypass domain restrictions. This flaw allows attackers to potentially navigate the automated browser to unauthorized domains by crafting URLs with malicious userinfo data.

Critical Impact

Attackers can bypass domain allowlist restrictions by exploiting URL parsing weaknesses in the authority component, potentially allowing the automated browser to access malicious or unintended domains.

Affected Products

  • Browser Use (browser-use) versions prior to 0.1.45

Discovery Timeline

  • 2025-05-03 - CVE-2025-47241 published to NVD
  • 2025-05-05 - Last updated in NVD database

Technical Details for CVE-2025-47241

Vulnerability Analysis

This vulnerability is classified under CWE-647 (Use of Non-Canonical URL Paths for Authorization Decisions). The Browser Use library provides an allowed_domains configuration option that restricts which domains the automated browser can navigate to. However, the URL parsing logic fails to properly handle the userinfo component of the URL authority section.

In URL syntax, the authority component follows the format userinfo@host:port. When a URL contains userinfo (the part before the @ symbol), the vulnerable parser incorrectly interprets portions of the URL, allowing attackers to craft URLs where an allowed domain appears in the userinfo section while the actual destination host is a different, potentially malicious domain.

The network-based attack vector requires high complexity to exploit, as the attacker must craft specific URL patterns and have the ability to influence URLs processed by the Browser Use automation. While no privileges are required and no user interaction is necessary, the scope is changed as the vulnerability can affect resources beyond the vulnerable component itself.

Root Cause

The root cause is improper URL parsing that fails to correctly extract and validate the host component when userinfo is present in the authority section. Standard URL parsing libraries handle this correctly by stripping userinfo before host extraction, but the vulnerable implementation does not follow canonical URL handling practices.

Attack Vector

The attack exploits the network-accessible nature of Browser Use automation. An attacker can influence the URLs processed by the browser automation tool, crafting URLs in the format https://allowed-domain.com@malicious-domain.com/path. When the vulnerable parser checks against allowed_domains, it may incorrectly validate the URL by matching against allowed-domain.com in the userinfo portion, while the actual navigation target is malicious-domain.com.

The vulnerability mechanism involves URL authority component parsing. When processing a URL like https://user:pass@example.com/, the authority section is user:pass@example.com. In this vulnerability, an attacker crafts a URL where the allowed domain appears before the @ symbol, causing the domain validation to pass while redirecting to an attacker-controlled host. For detailed technical information, refer to the GitHub Security Advisory GHSA-x39x-9qw5-ghrf.

Detection Methods for CVE-2025-47241

Indicators of Compromise

  • URLs containing @ symbols in the authority component being processed by Browser Use automation
  • Unexpected outbound connections from Browser Use processes to domains not in the allowlist
  • Log entries showing navigation to domains that differ from those appearing in URL prefixes

Detection Strategies

  • Monitor Browser Use application logs for URLs containing userinfo components (presence of @ before the host)
  • Implement network-level monitoring to detect outbound connections to domains not matching configured allowed_domains
  • Review automation workflows for any URL inputs that could be attacker-controlled

Monitoring Recommendations

  • Enable verbose logging in Browser Use to capture all URL navigation events
  • Deploy network security monitoring to correlate allowed domain configurations with actual outbound traffic
  • Audit URL sources in Browser Use automation scripts to identify potential injection points

How to Mitigate CVE-2025-47241

Immediate Actions Required

  • Upgrade Browser Use to version 0.1.45 or later immediately
  • Review automation configurations for proper allowed_domains settings
  • Audit URL sources in your Browser Use implementations to ensure URLs cannot be attacker-controlled
  • Implement additional network-level domain restrictions as defense-in-depth

Patch Information

The vulnerability has been addressed in Browser Use version 0.1.45. The fix properly handles URL parsing to extract the canonical host from the authority component, ignoring userinfo data when validating against allowed_domains. Details of the patch are available in GitHub Pull Request #1561 and the release notes for v0.1.45.

Workarounds

  • Implement network-level egress filtering to restrict outbound connections only to explicitly allowed domains
  • Pre-validate and sanitize all URLs before passing them to Browser Use, stripping userinfo components
  • Use a reverse proxy or network security appliance to enforce domain restrictions independently of Browser Use parsing
bash
# Example: Upgrade Browser Use to patched version
pip install --upgrade browser-use>=0.1.45

# Verify installed version
pip show browser-use | grep Version

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechN/A

  • SeverityMEDIUM

  • CVSS Score4.0

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:C/C:N/I:L/A:N
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-647
  • Technical References
  • GitHub Pull Request #1561

  • GitHub Release v0.1.45

  • GitHub Security Advisory GHSA-x39x-9qw5-ghrf
  • Latest CVEs
  • CVE-2025-49454: TinySalt Path Traversal Vulnerability

  • CVE-2025-48261: MultiVendorX Information Disclosure Flaw

  • CVE-2025-32119: CardGate WooCommerce SQL Injection Flaw

  • CVE-2025-26879: s2Member Plugin Reflected XSS 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