____________ _____ ___ ___ / ___\___ / \__ \ \ \/ / / /_/ > / / __ \_> < \___ /_____ \ /\ (____ /__/\_ \ /_____/ \/ \/ \/ \/ ======== file sharing and url shortener ======== min_age = 7 days max_age = 30 days max_size = 1 GiB retention = min_age + (min_age - max_age) * pow((file_size / max_size - 1), 3) days 30 | \ | \ | \ | \ | \ | \ | \ | \ 18.5 | --------\-------------------------------- | .. | \ | \ | .. | \ | .. | .. | ... 7 | .................. 0 512 1024 MiB ===================== curl ===================== HTTP POST files here: curl -F'file=@cat.jpg' tar.gz.ax You can also POST remote URLs: curl -F'url=site.ru/cat.jpg' tar.gz.ax If you don't want the URL to be easy to guess: curl -F'file=@cat.jpg' -Fsecret= tar.gz.ax curl -F'url=site.ru/cat.jpg' -Fsecret= tar.gz.ax Or you can shorten URLs: curl -F'shorten=' -F'url=site.ru/hi' tar.gz.ax Also you can append custom file name to the URL: tar.gz.ax/cat.jpg/dog.jpeg File URLs are valid for at least 7 days and up to 30 days (see below). Shortened URLs do not expire. Files can be set to expire sooner by adding an "expires" parameter (in hours) curl -F'file=@cat.jpg' -Fexpires=24 tar.gz.ax OR by setting "expires" to a timestamp in epoch milliseconds curl -F'file=@cat.jpg' -Fexpires=16819 tar.gz.ax Expired files won't be removed immediately, but will be removed as part of the next purge. Whenever a file that does not exist or has expired is uploaded, the HTTP response header includes an X-Token field. You can use this to perform management operations on the file. To delete the file immediately: curl -Ftoken=token -Fdelete= tar.gz.ax/cat.jpg To change the expiration date (see above): curl -Ftoken=token -Fexpires=3 tar.gz.ax/cat.jpg Maximum file size: 1 GiB Not allowed: application/java-archive, application/java-vm ================== use policy ================== please do not post any informations that may violate law (login/password lists, email lists, personal information). tar.gz.ax is NOT a platform for: child pornography malware, including "unwanted applications" botnet command and control schemes hosting your backups spamming the service with CI build artifacts piracy ===================== info ===================== /help - Help gz.ax/status - Status github.com/targzax - GitHub tar@gz.ax - Abuse ETC