transfer.sh
Очень удобный сервис для передачи файлов с помощью curl. К тому же и опенсорсный. Примеры использования:
Загрузить на хостинг:
$ curl —upload-file ./hello.txt https://transfer.sh/hello.txt
https://transfer.sh/66nb8/hello.txt
Загрузить и зашифровать:
$ cat /tmp/hello.txt|gpg -ac -o-|curl -X PUT —upload-file "-" https://transfer.sh/test.txt
https://transfer.sh/s14fs/test.txt
Скачать и расшифровать:
$ curl https://transfer.sh/1lDau/test.txt|gpg -o- > /tmp/hello.txt
Загрузить на VirusTotal:
$ curl -X PUT —upload-file nhgbhhj https://transfer.sh/test.txt/virustotal
Удобная вещь, так же можно поднять и самому подобный сервер. Ведь всё полностью open source!
Очень удобный сервис для передачи файлов с помощью curl. К тому же и опенсорсный. Примеры использования:
Загрузить на хостинг:
$ curl —upload-file ./hello.txt https://transfer.sh/hello.txt
https://transfer.sh/66nb8/hello.txt
Загрузить и зашифровать:
$ cat /tmp/hello.txt|gpg -ac -o-|curl -X PUT —upload-file "-" https://transfer.sh/test.txt
https://transfer.sh/s14fs/test.txt
Скачать и расшифровать:
$ curl https://transfer.sh/1lDau/test.txt|gpg -o- > /tmp/hello.txt
Загрузить на VirusTotal:
$ curl -X PUT —upload-file nhgbhhj https://transfer.sh/test.txt/virustotal
Удобная вещь, так же можно поднять и самому подобный сервер. Ведь всё полностью open source!