Everything you need to know about using TEMPMITE
Upload files via web interface, curl, or any HTTP client. Files are stored temporarily and auto-deleted after expiration.
Simply drag and drop files on the homepage or click to select files.
# Basic upload
curl -F "file=@yourfile.txt" https://upload.tempmite.com/upload
# With custom expiration (hours)
curl -F "file=@yourfile.txt" https://upload.tempmite.com/upload?expire=24
# With download limit
curl -F "file=@yourfile.txt" https://upload.tempmite.com/upload?downloads=5
# Both options
curl -F "file=@yourfile.txt" "https://upload.tempmite.com/upload?expire=48&downloads=10"
wget --post-file=yourfile.txt https://upload.tempmite.com/upload -O -
Invoke-RestMethod -Uri "https://upload.tempmite.com/upload" -Method Post -InFile "yourfile.txt"
Download files using the URL provided after upload.
Simply open the link in your browser to download.
# curl
curl -O https://tempmite.com/ABC123/yourfile.txt
# wget
wget https://tempmite.com/ABC123/yourfile.txt
# PowerShell
iwr https://tempmite.com/ABC123/yourfile.txt -OutFile yourfile.txt
# Windows (certutil)
certutil -urlcache -split -f https://tempmite.com/ABC123/yourfile.txt yourfile.txt
Lightweight data exfiltration service for pentesters and security researchers. Perfect for OOB data extraction.
# POST data to create a new bin
curl -X POST https://exfil.tempmite.com/mybin -d "your data here"
# Or via GET (for restricted environments)
curl "https://exfil.tempmite.com/mybin?d=your+data+here"
curl https://tempmite.com/exfil/mybin
curl -X POST "https://exfil.tempmite.com/mybin?append=1" -d "more data"
# Use the token received when creating the bin
curl -X DELETE "https://exfil.tempmite.com/mybin?token=YOUR_TOKEN"
Upload a file. Returns download URL and delete token.
| Parameter | Type | Description |
|---|---|---|
file | File | The file to upload (form-data) |
expire | Integer | Hours until expiration (1-168) |
downloads | Integer | Max downloads (0 = unlimited) |
Download a file.
Get file metadata (size, downloads, expiration).
Delete a file using the delete token.
| Limit | Value |
|---|---|
| Max file size | 150 GB |
| Default expiration | 1 hour |
| Max expiration | 168 hours (7 days) |
| Default download limit | 1 download |