Signed-off-by: FSSlc <fsslc235@gmail.com>
12 KiB
ffsend - 在 Linux 命令行中通过 FireFox Send 服务来简单安全地分享文件
Linux 用户更偏爱使用 scp
或 rsync
来进行文件或目录的复制拷贝。很多新的可选方式正发生在 Linux 上,因为 Linux 是开源的,所以任何人都可以为 Linux 开发一个安全软件。
在过去我们已经写了多篇有关安全分享这个话题的文章,它们分别是 OnionShare , Magic Wormhole , Transfer.sh 和 Dcp – Dat Copy.
今天我们甚至还将继续讨论这个话题,我们将介绍名为 ffsend
的工具。
ffsend 是什么?
ffsend 是 Firefox Send 服务的一个命令行客户端,允许用户通过命令行来传递和接收文件或目录。
它允许我们通过一个安全、私密、加密的链接,使用一个简单的命令来轻易安全地分享文件和目录。
使用 Firefox 的 Send 服务,文件可以被共享,最大允许的文件大小为 2GB(译者注:现在官网上写的是最大 1GB,登录后最大 2.5GB)。其他人可以通过这个工具或者网页浏览器来下载这些被分享的文件。
所有的文件总是在客户端被加密,并且秘钥将不会被远程主机所分享。另外,你还可以为上传的文件设置密码。
被上传的文件在被下载(默认被下载 1 次,最多可被下载 10 次)后或者 24 小时后,它们将被自动删除。这将确保你的文件不会永远的保留在网络上。
该工具当前处于 alpha 阶段,使用时请自担风险。而且,当前只有有限个安装选项可用。
ffsend 的特点:
- 全功能且友好的命令行工具
- 安全地上传和下载文件与目录
- 在客户端总是被加密
- 额外的密码保护,密码生成和可配置下载次数限制
- 内置文件或目录的打包和解压
- 可以简单地管理你的历史分享记录
- 能够使用你自己的发送主机
- 查看或者删除共享文件
- 精准的错误报告
- 由加密或上传下载导致的低内存消耗
- 无需集成就可被用在脚本中
如何在 LInux 中安装 ffsend 呢?
当前除了 Debian 和 Arch Linux 系统,其他发行版还没有相应的安装包(译者注:这个信息已过时,最新内容请看这里)。然而,我们可以轻易地根据我们自己的操作系统和架构下载到相应的预编译二进制文件。
运行下面的命令来为你的操作系统下载 ffsend
最新可用的版本(译者注:当前最新版本为 v0.2.58):
$ wget https://github.com/timvisee/ffsend/releases/download/v0.1.2/ffsend-v0.1.2-linux-x64.tar.gz
然后使用下面的命令来解压 tar 包:
$ tar -xvf ffsend-v0.1.2-linux-x64.tar.gz
接着运行下面的命令来查看你的 PATH
环境变量:
$ echo $PATH
/home/daygeek/.cargo/bin:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/lib/jvm/default/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl
正如我先前告知的那样,下面我们要做的就是将这个可执行文件放置到 PATH
环境变量中的某个目录中:
$ sudo mv ffsend /usr/local/sbin
直接运行 ffsend
可以获取其基本使用信息:
$ ffsend
ffsend 0.1.2
Usage: ffsend [FLAGS] ...
Easily and securely share files from the command line.
A fully featured Firefox Send client.
Missing subcommand. Here are the most used:
ffsend upload ...
ffsend download ...
To show all subcommands, features and other help:
ffsend help [SUBCOMMAND]
对于使用基于 Arch Linux 系统的用户可以简单地借助 AUR Helper 来安装它,因为这个包已经在 AUR 软件仓库中了。
$ yay -S ffsend
对于使用 Debian/Ubuntu
系统的用户,使用 DPKG 命令 来安装 ffsend
。
$ wget https://github.com/timvisee/ffsend/releases/download/v0.1.2/ffsend_0.1.2_amd64.deb
$ sudo dpkg -i ffsend_0.1.2_amd64.deb
如何使用 ffsend 来发送文件?
这并不复杂,我们可以简单地通过下面的语法来发送文件。
语法:
$ ffsend upload [/Path/to/the/file/name]
在下面的例子中,我们将上传一个名为 passwd-up1.sh
的文件,一旦你上传了该文件,你将得到一个唯一的 URL。
$ ffsend upload passwd-up1.sh --copy
Upload complete
Share link: https://send.firefox.com/download/a4062553f4/#yy2_VyPaUMG5HwXZzYRmpQ
在任何远端的系统上,只需要使用上面那个唯一的 URL 就可以下载上传的文件了。
语法:
$ ffsend download [Generated URL]
命令的输出如下:
$ ffsend download https://send.firefox.com/download/a4062553f4/#yy2_VyPaUMG5HwXZzYRmpQ
Download complete
使用下面的语法来对目录进行上传:
$ ffsend upload [/Path/to/the/Directory] --copy
在下面的例子中,我们将上传一个名为 2g
的目录:
$ ffsend upload /home/daygeek/2g --copy
You've selected a directory, only a single file may be uploaded.
Archive the directory into a single file? [Y/n]: y
Archiving...
Upload complete
Share link: https://send.firefox.com/download/90aa5cfe67/#hrwu6oXZRG2DNh8vOc3BGg
在任意的远端系统中,只需要利用上面生成的唯一 URL 就可以获取到刚才上传的目录了。
$ ffsend download https://send.firefox.com/download/90aa5cfe67/#hrwu6oXZRG2DNh8vOc3BGg
You're downloading an archive, extract it into the selected directory? [Y/n]: y
Extracting...
Download complete
上面已经通过安全、私密和加密过的链接来发送了文件。然而,如果你想在你的掌控范围内再添加额外的安全措施,你可以为文件添加密码。
$ ffsend upload file-copy-rsync.sh --copy --password
Password:
Upload complete
Share link: https://send.firefox.com/download/0742d24515/#P7gcNiwZJ87vF8cumU71zA
当你在远端系统中尝试下载该文件时,它将要求你输入密码:
$ ffsend download https://send.firefox.com/download/0742d24515/#P7gcNiwZJ87vF8cumU71zA
This file is protected with a password.
Password:
Download complete
另外,你还可以在上传过程中提供下载次数限制来限制文件被下载的次数。
$ ffsend upload file-copy-scp.sh --copy --downloads 10
Upload complete
Share link: https://send.firefox.com/download/23cb923c4e/#LVg6K0CIb7Y9KfJRNZDQGw
然后你可以在任意的远程系统中使用上面的唯一 URL 来下载该文件:
ffsend download https://send.firefox.com/download/23cb923c4e/#LVg6K0CIb7Y9KfJRNZDQGw
Download complete
假如你想看这个链接的更多细节,你可以使用下面的命令来查看它的信息,它将为你展示文件名称、文件大小、被下载次数以及过期时间。
语法:
$ ffsend info [Generated URL]
$ ffsend info https://send.firefox.com/download/23cb923c4e/#LVg6K0CIb7Y9KfJRNZDQGw
ID: 23cb923c4e
Name: file-copy-scp.sh
Size: 115 B
MIME: application/x-sh
Downloads: 3 of 10
Expiry: 23h58m (86280s)
此外,你还可以使用下面的命令来查看你的传输历史:
$ ffsend history
# LINK EXPIRY
1 https://send.firefox.com/download/23cb923c4e/#LVg6K0CIb7Y9KfJRNZDQGw 23h57m
2 https://send.firefox.com/download/0742d24515/#P7gcNiwZJ87vF8cumU71zA 23h55m
3 https://send.firefox.com/download/90aa5cfe67/#hrwu6oXZRG2DNh8vOc3BGg 23h52m
4 https://send.firefox.com/download/a4062553f4/#yy2_VyPaUMG5HwXZzYRmpQ 23h46m
5 https://send.firefox.com/download/74ff30e43e/#NYfDOUp_Ai-RKg5g0fCZXw 23h44m
6 https://send.firefox.com/download/69afaab1f9/#5z51_94jtxcUCJNNvf6RcA 23h43m
假如你不想再分享某个链接,你可以使用下面的语法来删除它:
语法:
$ ffsend delete [Generated URL]
$ ffsend delete https://send.firefox.com/download/69afaab1f9/#5z51_94jtxcUCJNNvf6RcA
File deleted
另外,你还可以通过使用 firefox 浏览其打开 https://send.firefox.com/ 来完成相应的分享。
想查看其他的可能选项,请浏览它对应的 man 信息或者帮助页:
$ ffsend --help
ffsend 0.1.2
Tim Visee
Easily and securely share files from the command line.
A fully featured Firefox Send client.
USAGE:
ffsend [FLAGS] [OPTIONS] [SUBCOMMAND]
FLAGS:
-f, --force Force the action, ignore warnings
-h, --help Prints help information
-i, --incognito Don't update local history for actions
-I, --no-interact Not interactive, do not prompt
-q, --quiet Produce output suitable for logging and automation
-V, --version Prints version information
-v, --verbose Enable verbose information and logging
-y, --yes Assume yes for prompts
OPTIONS:
-H, --history Use the specified history file [env: FFSEND_HISTORY]
-t, --timeout Request timeout (0 to disable) [env: FFSEND_TIMEOUT]
-T, --transfer-timeout Transfer timeout (0 to disable) [env: FFSEND_TRANSFER_TIMEOUT]
SUBCOMMANDS:
upload Upload files [aliases: u, up]
download Download files [aliases: d, down]
debug View debug information [aliases: dbg]
delete Delete a shared file [aliases: del]
exists Check whether a remote file exists [aliases: e]
help Prints this message or the help of the given subcommand(s)
history View file history [aliases: h]
info Fetch info about a shared file [aliases: i]
parameters Change parameters of a shared file [aliases: params]
password Change the password of a shared file [aliases: pass, p]
The public Send service that is used as default host is provided by Mozilla.
This application is not affiliated with Mozilla, Firefox or Firefox Send.
作者:Vinoth Kumar 选题:lujun9972 译者:FSSlc 校对:校对者ID