Alih-alih mengikuti langkah malas seperti membuka browser, pemuatan "file upload gratis" website, login atau mendaftar, saat browsing file yang diinginkan dan meng-upload, Anda sekarang dapat berbagi file Anda di web langsung dari Command-Line.
Layanan ini benar-benar gratis dan tidak ada pendaftaran diperlukan untuk itu. Hal ini juga dikombinasikan dengan beberapa kriptografi dan alat encoding. Hal ini dapat membantu menghindari filter konten yang sederhana.
Bagaimana meng-upload
#Meng-upload mudah menggunakan curl
$ curl --upload-file ./hello.txt https://transfer.sh/hello.txt
# Download the file
$ curl --upload-file ./hello.txt https://transfer.sh/hello.txt
Buat alias dan menambahkannya ke .bashrc or .zshrc
# Tambahkan ini ke .bashrc atau setara
transfer() {
# Menulis ke output ke tmp berkas karena progress bar
tmpfile=$( mktemp -t transferXXX ); curl --progress-bar --upload-file $1 https://transfer.sh/$(basename $1) >> $tmpfile; cat $tmpfile; rm -f $tmpfile; }
alias transfer=transfer
#Sekarang Anda dapat menggunakan perintah Transfer
$ transfer hello.txt
transfer() {
# Menulis ke output ke tmp berkas karena progress bar
tmpfile=$( mktemp -t transferXXX ); curl --progress-bar --upload-file $1 https://transfer.sh/$(basename $1) >> $tmpfile; cat $tmpfile; rm -f $tmpfile; }
alias transfer=transfer
#Sekarang Anda dapat menggunakan perintah Transfer
$ transfer hello.txt
Upload beberapa file sekaligus
$ curl -i -F filedata=@/tmp/hello.txt -F filedata=@/tmp/hello2.txt https://transfer.sh/
# Menggabungkan download sebagai zip atau tar arsip$ curl https://transfer.sh/(15HKz/hello.txt,15HKz/hello.txt).tar.gz
$ curl https://transfer.sh/(15HKz/hello.txt,15HKz/hello.txt).zip
# Menggabungkan download sebagai zip atau tar arsip$ curl https://transfer.sh/(15HKz/hello.txt,15HKz/hello.txt).tar.gz
$ curl https://transfer.sh/(15HKz/hello.txt,15HKz/hello.txt).zip
Mengenkripsi file Anda sebelum transfer
# Encrypt files with password using gpg
$ cat /tmp/hello.txt|gpg -ac -o-|curl -X PUT --upload-file "-" https://transfer.sh/test.txt
# Encrypt and upload
$ curl https://transfer.sh/1lDau/test.txt|gpg -o- > /tmp/hello.txt
$ cat /tmp/hello.txt|gpg -ac -o-|curl -X PUT --upload-file "-" https://transfer.sh/test.txt
# Encrypt and upload
$ curl https://transfer.sh/1lDau/test.txt|gpg -o- > /tmp/hello.txt
Memindai malware
# Scan for malware or viruses using Clamav
$ wget http://www.eicar.org/download/eicar.com
$ curl -X PUT --upload-file ./eicar.com https://transfer.sh/eicar.com/scan
# Upload malware to VirusTotal, get a permalink in return
$ curl -X PUT --upload-file nhgbhhj https://transfer.sh/test.txt/virustotal
$ wget http://www.eicar.org/download/eicar.com
$ curl -X PUT --upload-file ./eicar.com https://transfer.sh/eicar.com/scan
# Upload malware to VirusTotal, get a permalink in return
$ curl -X PUT --upload-file nhgbhhj https://transfer.sh/test.txt/virustotal
Database mysql backup, mengenkripsi dan mentransfer
# Backup, mengenkripsi dan mentransfer
$ mysqldump --all-databases|gzip|gpg -ac -o-|curl -X PUT --upload-file "-" https://transfer.sh/test.txt
$ mysqldump --all-databases|gzip|gpg -ac -o-|curl -X PUT --upload-file "-" https://transfer.sh/test.txt
Kirim email dengan link Transfer (menggunakan alias)
# Transfer dan mengirim email dengan link (menggunakan alias)
$ transfer /tmp/hello.txt | mail -s "Hello World" user@yourmaildomain.com
# Transfer dan mengirim email dengan link (menggunakan alias)
$ transfer /tmp/hello.txt | mail -s "Hello World" user@yourmaildomain.com
Sources: Official Transfer.sh
0komentar:
Post a Comment