
https://github.com/schollz/croc/releases/latest
This project is supported by:
croc is a tool that allows any two computers to simply and securely transfer files and folders. AFAIK, croc is the only CLI file-transfer tool that does all of the following:
For more information about croc, see my blog post.
!Example
Download https://github.com/schollz/croc/releases/latest, or install a release from the command-line:
curl https://getcroc.schollz.com | bash
On macOS you can install the latest release with Homebrew:
brew install croc
On macOS you can also install the latest release with MacPorts:
sudo port selfupdate sudo port install croc
On Windows you can install the latest release with Scoop or Chocolatey:
scoop install croc
choco install croc
On Unix you can install the latest release with Nix:
nix-env -i croc
On Alpine Linux you have to install dependencies first:
apk add bash coreutils wget -qO- https://getcroc.schollz.com | bash
On Arch Linux you can install the latest release with pacman:
pacman -S croc
On Gentoo you can install with portage:
emerge net-misc/croc
On Termux you can install with pkg:
pkg install croc
On FreeBSD you can install with pkg:
pkg install croc
Or, you can install Go and build from source (requires Go 1.15+):
go install github.com/schollz/croc/v9@latest
On Android there is a 3rd party F-Droid app available to download.
To send a file, simply do:
$ croc send [file(s)-or-folder] Sending 'file-or-folder' (X MB) Code is: code-phrase
Then to receive the file (or folder) on another computer, you can just do
croc code-phrase
The code phrase is used to establish password-authenticated key agreement (PAKE) which generates a secret key for the sender and recipient to use for end-to-end encryption.
There are a number of configurable options (see --help). A set of options (like custom relay, ports, and code phrase) can be set using --remember.
You can send with your own code phrase (must be more than 6 characters).
croc send --code [code-phrase] [file(s)-or-folder]
By default, croc will prompt whether to overwrite a file. You can automatically overwrite files by using the --overwrite flag (recipient only). For example, receive a file to automatically overwrite:
croc --yes --overwrite <code>
You can pipe to croc:
cat [filename] | croc send
In this case croc will automatically use the stdin data and send and assign a filename like "croc-stdin-***". To receive to stdout at you can always just use the --yes will automatically approve the transfer and pipe it out to stdout.
croc --yes [code-phrase] > out
All of the other text printed to the console is going to stderr so it will not interfere with the message going to stdout.
Sometimes you want to send URLs or short text. In addition to piping, you can easily send text with croc:
croc send --text "hello world"
This will automatically tell the receiver to use stdout when they receive the text so it will be displayed.
You can use a proxy as your connection to the relay by adding a proxy address with --socks5. For example, you can send via a tor relay:
croc --socks5 "127.0.0.1:9050" send SOMEFILE
You can choose from several different elliptic curves to use for encryption by using the --curve flag. Only the recipient can choose the curve. For example, receive a file using the P-521 curve:
croc --curve p521 <codephrase>
Available curves are P-256, P-348, P-521 and SIEC. SIEC is the default curve used, it is a lesser known curve that belongs to a class of "super-isolated" curves which has security that does not reduce to the security of curves around it. (Scholl, Travis. Experimental Mathematics 28.4 (2019): 385-397)
The relay is needed to staple the parallel incoming and outgoing connections. By default, croc uses a public relay but you can also run your own relay:
croc relay
By default it uses TCP ports 9009-9013. Make sure to open those up. You can customized the ports (e.g. croc relay --ports 1111,1112), but you must have a minimum of 2 ports for the relay. The first port is for communication and the subsequent ports are used for the multiplexed data transfer.
You can send files using your relay by entering --relay to change the relay that you are using if you want to custom host your own.
croc --relay "myrelay.example.com:9009" send [filename]
Note, when sending, you only need to include the first port (the communication port). The subsequent ports for data transfer will be transmitted back to the user from the relay.
Self-host relay (docker)
If it's easier you can also run a relay with Docker:
docker run -d -p 9009-9013:9009-9013 -e CROC_PASS='YOURPASSWORD' schollz/croc
Be sure to include the password for the relay otherwise any requests will be rejected.
croc --pass YOURPASSWORD --relay "myreal.example.com:9009" send [filename]
Note: when including --pass YOURPASSWORD you can instead pass a file with the password, e.g. --pass FILEWITHPASSWORD.
MIT
croc has gone through many iterations, and I am awed by all the great contributions! If you feel like contributing, in any way, by all means you can send an Issue, a PR, ask a question, or tweet me (@yakczar).
Thanks https://github.com/warner for the https://github.com/warner/magic-wormhole, https://github.com/tscholl2 for the https://gist.github.com/tscholl2/dc7dc15dc132ea70a98e8542fefffa28, https://github.com/skorokithakis for code on proxying two connections. Finally thanks for making pull requests https://github.com/maximbaz, https://github.com/meyermarcel, https://github.com/Girbons, https://github.com/techtide, https://github.com/heymatthew, https://github.com/Lunsford94, https://github.com/lummie, https://github.com/jesuiscamille, https://github.com/threefjord, https://github.com/marcossegovia, https://github.com/csleong98, https://github.com/afotescu, https://github.com/callmefever, https://github.com/El-JojA, https://github.com/anatolyyyyyy, https://github.com/goggle, https://github.com/smileboywtu, https://github.com/nicolashardy, https://github.com/fbartels, https://github.com/rkuprov, https://github.com/hreese, https://github.com/xenrox and https://github.com/lpar!
您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。





探索更多轩辕镜像的使用方法,找到最适合您系统的配置方式
通过 Docker 登录认证访问私有仓库
无需登录使用专属域名
Kubernetes 集群配置 Containerd
K3s 轻量级 Kubernetes 镜像加速
VS Code Dev Containers 配置
Podman 容器引擎配置
HPC 科学计算容器配置
ghcr、Quay、nvcr 等镜像仓库
Harbor Proxy Repository 对接专属域名
Portainer Registries 加速拉取
Nexus3 Docker Proxy 内网缓存
需要其他帮助?请查看我们的 常见问题Docker 镜像访问常见问题解答 或 提交工单
docker search 限制
站内搜不到镜像
离线 save/load
插件要用 plugin install
WSL 拉取慢
安全与 digest
新手拉取配置
镜像合规机制
manifest unknown
no matching manifest(架构)
invalid tar header(解压)
TLS 证书失败
DNS 超时
域名连通性排查
410 Gone 排查
402 与流量用尽
401 认证失败
429 限流
D-Bus 凭证提示
413 与超大单层
来自真实用户的反馈,见证轩辕镜像的优质服务