transfer.kometa.wiki - Fast, secure file sharing === Upload: $ curl --upload-file ./hello.txt https://transfer.kometa.wiki/hello.txt Download: $ curl https://transfer.kometa.wiki/Idi630757c/hello.txt -o hello.txt Set limits: $ curl -H "Max-Downloads: 1" -H "Max-Days: 5" --upload-file ./hello.txt https://transfer.kometa.wiki/hello.txt Encrypt with GPG: $ cat /tmp/hello.txt | gpg -ac -o- | curl -X PUT --upload-file "-" https://transfer.kometa.wiki/test.txt $ curl https://transfer.kometa.wiki/Idi630757c/test.txt | gpg -o- > /tmp/hello.txt Encrypt with OpenSSL: $ cat /tmp/hello.txt | openssl aes-256-cbc -pbkdf2 -e | curl -X PUT --upload-file "-" https://transfer.kometa.wiki/test.txt $ curl https://transfer.kometa.wiki/Idi630757c/test.txt | openssl aes-256-cbc -pbkdf2 -d > /tmp/hello.txt Files are stored for 14 days. Powered by transfer.sh