Burp Suite Professional browser-powered crawler file input p...#2377
Open
carlospolop wants to merge 1 commit into
Open
Burp Suite Professional browser-powered crawler file input p...#2377carlospolop wants to merge 1 commit into
carlospolop wants to merge 1 commit into
Conversation
Collaborator
Author
🔗 Additional ContextOriginal Blog Post: https://hackerone.com/reports/3712279 Content Categories: Based on the analysis, this content was categorized under "Pentesting Web / Web Vulnerabilities Methodology or a new Burp Suite / Attacking Automated Crawlers section; also cross-reference Windows persistence via Startup folder and generic path traversal/arbitrary file write". Repository Maintenance:
Review Notes:
Bot Version: HackTricks News Bot v1.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🤖 Automated Content Update
This PR was automatically generated by the HackTricks News Bot based on a technical blog post.
📝 Source Information
🎯 Content Summary
Overview
The report describes a High severity vulnerability in Burp Suite Professional 2026.3.3 on Windows, affecting Burp Scanner's browser-powered crawler. When Burp crawls an attacker-controlled website, a malicious page can abuse Burp's automatic handling of HTML file upload inputs to make Burp create an attacker-controlled local file at an attacker-influenced filesystem path.The demonstrated impact is a delayed local code execution primitive: the page causes ...
🔧 Technical Details
Abusing automated file input handling in crawlers: Browser automation and crawling systems that auto-fill
<input type="file">fields can become dangerous if they create local upload files from page-controlled metadata. If an application uses attributes such asaccept,value, ornameto derive a local filename, a malicious page may turn ordinary form crawling into a local filesystem write primitive. In this case, the file input'svaluebecomes the file content and theacceptattribute becomes part of the local filename.Path traversal through extension parsing: Treating any
accepttoken that starts with.as a safe file extension is unsafe. A payload such as./../../../../target/path/file.batbegins with a dot, so it can pass naive extension validation, but it also contains traversal sequences. If the resulting filename is passed toPath...🤖 Agent ActionsDone.
Updated:
src/pentesting-web/file-upload/README.mdAdded:
accepttoken parsed as an extension pattern## ReferencesWhy this file:
<input type="file">plus attacker-controlled filename/content generation, not a Burp-specific product page or a Windows-only persistence page.Validation:
mdbook buildcould not be run becausemdbookis not installed in this environmentThis PR was automatically created by the HackTricks Feed Bot. Please review the changes carefully before merging.