upload-insecure-files

SkillFiles & storage

Insecure file upload playbook. Use when testing upload validation, storage paths, processing pipelines, preview behavior, overwrite risks, and upload-to-RCE chains.

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the upload-insecure-files skill

What this skill tells your AI

The instructions your AI receives, as published by langbyyi/cyberstrikeai-src in skills/upload-insecure-files/SKILL.md and read by ahel’s review.

AI LOAD INSTRUCTION: Expert file upload attack playbook. Use when the target accepts files, imports, avatars, media, documents, or archives and you need the full workflow: validation bypass, storage path abuse, post-upload access, parser exploitation, multi-tenant overwrite, and chaining into XSS, XXE, CMDi, traversal, or business logic impact. For web server parsing vulnerabilities, PUT method exploitation, and specific CVEs (WebLogic, Flink, Tomcat).

0. RELATED ROUTING

Extended Scenarios

Also check the extended sections below when you need:

  • IIS parsing vulnerabilities — x.asp/ directory parsing, ; semicolon truncation (shell.asp;.jpg)
  • Nginx parsing misconfiguration — avatar.jpg/.php with cgi.fix_pathinfo=1
  • Apache parsing — multiple extensions, AddHandler, CVE-2017-15715 \n (0x0A) bypass
  • PUT method exploitation — IIS WebDAV PUT+COPY, Tomcat CVE-2017-12615 readonly + .jsp/ bypass
  • WebLogic CVE-2018-2894 arbitrary file upload via Web Service Test Page
  • Apache Flink CVE-2020-17518 file upload with path traversal
  • Upload + parsing vulnerability chain — EXIF PHP code + Nginx /.php path info
  • Full extension bypass reference table (PHP/ASP/JSP alternatives, case variations, null bytes)

Use this file as the deep upload workflow reference. Also load:


1. CORE MODEL

Every upload feature should be tested as four separate trust boundaries:

  1. Accept: what validation happens before the file is stored?
  2. Store: where is the file written and under what name and permissions?
  3. Process: what background tools, converters, scanners, parsers, or extractors touch it?
  4. Serve: how is it later downloaded, rendered, transformed, or shared?

Many targets validate only one stage. The bug usually appears in a different stage than the one where the file was uploaded.

1.1 验证顺序铁律(避免原地打转)

上传类漏洞最高频的失败模式是反复猜测路径参数而从未确认文件是否落地。

严格按顺序执行:

  1. 先确认落地(Store):上传一个已知无害的 .txt/.jpg,用响应里的 URL、目录列表、或 filepath/savepath 参数回显定位文件物理位置。确认能访问到上传的文件后,再尝试恶意内容。
  2. 再测绕过(Accept):确认落地路径后,逐个尝试扩展名/内容/MIME 绕过,每次只改一个变量,并立即验证文件是否以可执行形式落地。
  3. 最后测执行(Serve/Process):文件落地后,访问它确认是否被服务器解析执行(而非当成静态资源下载)。

铁律:

  • filepath/savepath/path 参数:先传一个确定值(如 attached),上传成功后再访问 /<该值>/test.txt 确认落地。不要在未确认落地前反复猜测路径
  • MapPath/路径错误(ASP):Server.MapPath() 错误说明路径参数为空或非法,需补 filepath 参数而非继续盲测。
  • 每个绕过姿势单独验证:改扩展名就只改扩展名,改内容就只改内容,避免多变量同时变导致无法归因。

2. RECON QUESTIONS FIRST

Before payload selection, answer these:

  • Which extensions are allowed, denied, or normalized?
  • Does the backend trust extension, MIME type, magic bytes, or all three?
  • Is the file renamed, transcoded, unzipped, scanned, or re-hosted?
  • Is retrieval direct, proxied, signed, or served from a CDN?
  • Can one user predict or overwrite another user's file path?
  • Do filenames, metadata, or previews reflect back into HTML, logs, admin consoles, or PDFs?

3. VALIDATION BYPASS MATRIX

Validation StyleWhat to Test
extension blacklistdouble extension, case toggles, trailing dot, alternate separators
content-type onlymismatched multipart Content-Type, browser vs proxy rewrite
magic-byte onlypolyglot files or valid header plus dangerous tail content
server-side renamewhether dangerous content survives rename and later rendering
image-only policySVG, malformed image plus metadata, parser differential
archive or import onlyzip contents, nested path names, XML members, decompression behavior

Representative bypass families:

shell.php.jpg
avatar.jpg.php
file.asp;.jpg
file.php%00.jpg
file.svg
archive.zip

这组小样本已经覆盖了原本单独 upload payload helper 的主要用途,不再需要额外入口来做第一轮选型。

Do not stop at upload success. Successful upload without dangerous retrieval or processing is not enough.


4. STORAGE AND RETRIEVAL ABUSE

Predictable or controllable paths

Look for patterns like:

/uploads/USER_ID/avatar.png
/files/org-slug/report.pdf
/cdn/tmp/<uuid>/<filename>

Test for:

  • cross-tenant read by guessing IDs, slugs, or UUID patterns
  • overwrite by reusing another user's filename
  • path normalization bugs in filename or archive members
  • private file exposed through direct object URL despite UI-level access control

Filename-based injection surfaces

A safe file can still be dangerous if the filename is reflected into:

  • gallery HTML
  • admin moderation panels
  • PDF/CSV export jobs
  • logs, audit views, or email notifications

If filename is reflected, treat it like stored input, not like passive metadata.


5. PROCESSING-CHAIN ATTACKS

The highest-value upload bugs often live in asynchronous processors.

Common processor classes

ProcessorRisk
image resizing or thumbnailingparser differential, ImageMagick or library bugs, metadata reflection
video or audio transcodingFFmpeg-style parsing and protocol abuse
archive extractionzip slip, overwrite, decompression bombs
document importCSV formula injection, office XML parsing, macro-adjacent workflows
XML or SVG parsingXXE, SSRF, local file disclosure
HTML to PDF or preview renderingSSRF, script execution, local file references
AV or DLP scanningunzip depth, hidden nested content, race conditions

What to prove

  1. The file is touched by a processor.
  2. The processor behaves differently from the upload validator.
  3. That difference creates impact: read, execute, overwrite, SSRF, or stored client-side execution.

6. HIGH-VALUE EXPLOITATION PATHS

Browser execution

  • SVG served as active content
  • HTML or text uploads rendered inline
  • EXIF or filename reflected into an HTML page

XML and document parsing

  • SVG XXE for file read or SSRF
  • OOXML import for XML entity or parser abuse
  • CSV import for formula execution in analyst workflows

Server-side execution or file-system impact

  • image or document converter invoking shell tools
  • zip slip writing outside intended directory
  • upload-to-LFI chain where uploaded content later becomes includable

Access-control and sharing bugs

  • private upload accessible via predictable URL
  • moderation or quarantine path still publicly reachable
  • one user replacing another user's public asset

7. AUTHORIZATION AND BUSINESS LOGIC CHECKS

Upload features frequently hide non-parser bugs:

  • upload quota enforced in UI but not API
  • plan restrictions checked on upload page but not on import endpoint
  • file ownership checked on list view but not on direct download or replace endpoint
  • approval workflow bypassed by calling the final storage endpoint directly
  • delete or replace action missing object-level authorization

When the upload path includes account, project, or organization identifiers, always run an A/B authorization test.


8. TEST SEQUENCE

  1. Upload one benign marker file and map rename, path, and retrieval behavior.
  2. Try one validation-bypass sample and one active-content sample.
  3. Check whether retrieval is attachment, inline render, transformed preview, or background processing.
  4. If processing exists, pivot by processor family: XSS, XXE, CMDi, zip slip, or SSRF.
  5. Run tenant-boundary and overwrite tests on file IDs, replace endpoints, and public URLs.

9. CHAINING MAP

ObservationPivot
SVG or XML acceptedxxe xml external entity
filename or metadata reflectedxss cross site scripting
converter or processor shells outcmdi command injection
extraction path looks controllablepath traversal lfi
overwrite, quota, approval, or tenant bugbusiness logic vulnerabilities

10. OPERATOR CHECKLIST

[] Confirm accept/store/process/serve stages separately
[] Test one extension bypass and one content-based payload
[] Check inline render vs forced download
[] Inspect filenames, metadata, and preview surfaces for reflection
[] Probe processing chain: image, archive, XML, document, PDF
[] Run A/B authorization on read, replace, delete, and share actions
[] Map predictable paths and public/private URL boundaries

11. UPLOAD SUCCESS RATE MODEL & ADVANCED METHODOLOGY

Success Rate Formula

P(RCE via Upload) = P(bypass_detection) × P(obtain_path) × P(execute_via_webserver)

Many testers focus only on bypassing file type checks, but forget:

  • Path discovery: Without knowing the upload path, even a successful bypass is useless
  • Server parsing: Even with a .php file uploaded, if the web server doesn't parse it as PHP, no RCE

Rich Text Editor Path Matrix

EditorCommon Upload PathVersion Indicator
FCKeditor/fckeditor/editor/filemanager/connectors//fckeditor/_whatsnew.html
CKEditor/ckeditor//ckeditor/CHANGES.md
eWebEditor/ewebeditor/Admin: /ewebeditor/admin_login.asp
KindEditor/kindeditor/attached//kindeditor/kindeditor.js
UEditor/ueditor/net/ or /ueditor/php//ueditor/ueditor.config.js

Validation Defect Taxonomy (5 Dimensions)

DimensionFlaw Examples
LocationClient-side only, inconsistent front/back
MethodExtension blacklist (incomplete), MIME check only, magic bytes only
Logic orderRenames AFTER execution check, validates BEFORE full upload
ScopeChecks filename but not file content, checks first bytes only
Execution contextUpload succeeds but different vhost/handler processes the file

Response Manipulation Bypass

# If server returns allowedTypes in response for client-side validation:
# Intercept response → modify allowedTypes to include .php → upload .php
# The server never actually validates — it trusts client filtering

IIS Semicolon Parsing

# IIS treats semicolon as parameter delimiter in filenames:
shell.asp;.jpg    → IIS executes as ASP
# NTFS Alternate Data Stream:
shell.asp::$DATA  → Bypasses extension check, IIS may execute

Apache Multi-Extension

# Apache parses right-to-left for handler:
shell.php.jpg     → May execute as PHP if AddHandler php applies
# Newline in filename (CVE-2017-15715):
shell.php\x0a     → Bypasses regex but Apache still executes as PHP

Nginx cgi.fix_pathinfo

# With cgi.fix_pathinfo=1 (PHP-FPM):
/uploads/image.jpg/anything.php → PHP processes image.jpg as PHP!
# Upload legitimate-looking JPG with PHP code embedded

Signals

GitHub stars
116
Forks
4
Last commit
Sep 2026
Advanced
Catalog kind
skill
Gateway key
upload-insecure-files
Source
github.com/langbyyi/cyberstrikeai-src