croc/README.md

129 lines
8.4 KiB
Markdown
Raw Normal View History

2017-10-19 02:03:15 +02:00
<p align="center">
<img
2017-10-21 03:45:37 +02:00
src="https://user-images.githubusercontent.com/6550035/31846899-2b8a7034-b5cf-11e7-9643-afe552226c59.png"
width="100%" border="0" alt="croc">
2017-10-19 02:03:15 +02:00
<br>
2018-06-24 15:58:27 +02:00
<a href="https://github.com/schollz/croc/releases/latest"><img src="https://img.shields.io/badge/version-β2.0.0-brightgreen.svg?style=flat-square" alt="Version"></a>
2018-05-05 23:11:09 +02:00
<a href="https://saythanks.io/to/schollz"><img src="https://img.shields.io/badge/Say%20Thanks-!-yellow.svg?style=flat-square" alt="Go Report Card"></a>
2017-10-19 02:03:15 +02:00
</p>
2017-10-17 17:21:47 +02:00
2018-05-05 23:10:49 +02:00
<p align="center">Easily and securely transfer stuff from one computer to another.</p>
2017-10-17 17:21:47 +02:00
2018-04-24 09:03:07 +02:00
*croc* allows any two computers to directly and securely transfer files and folders. When sending a file, *croc* generates a random code phrase which must be shared with the recipient so they can receive the file. The code phrase encrypts all data and metadata and also serves to authorize the connection between the two computers in a intermediary relay. The relay connects the TCP ports between the two computers and does not store any information (and all information passing through it is encrypted).
2017-10-17 17:21:47 +02:00
2018-04-24 09:05:30 +02:00
I hear you asking, *Why another open-source peer-to-peer file transfer utilities?* [There](https://github.com/cowbell/sharedrop) [are](https://github.com/webtorrent/instant.io) [great](https://github.com/kern/filepizza) [tools](https://github.com/warner/magic-wormhole) [that](https://github.com/zerotier/toss) [already](https://github.com/ipfs/go-ipfs) [do](https://github.com/zerotier/toss) [this](https://github.com/nils-werner/zget). But, after review, [I found it was useful to make another](https://schollz.github.io/sending-a-file/). Namely, *croc* has no dependencies (just [download a binary and run](https://github.com/schollz/croc/releases/latest)), it works on any operating system, and its blazingly fast because it does parallel transfer over multiple TCP ports.
2017-10-19 02:03:15 +02:00
2017-10-18 16:50:20 +02:00
# Example
2017-10-21 22:58:57 +02:00
_These two gifs should run in sync if you force-reload (Ctl+F5)_
2017-10-22 19:32:25 +02:00
**Sender:**
2018-04-23 10:38:57 +02:00
![send](https://raw.githubusercontent.com/schollz/croc/master/logo/sender.gif)
2017-10-22 19:32:25 +02:00
**Receiver:**
2018-04-23 10:38:57 +02:00
![receive](https://raw.githubusercontent.com/schollz/croc/master/logo/receiver.gif)
2017-10-21 22:55:49 +02:00
2017-10-18 16:50:20 +02:00
**Sender:**
2017-10-17 17:21:47 +02:00
```
2018-04-23 10:59:52 +02:00
$ croc -send some-file-or-folder
Sending 4.4 MB file named 'some-file-or-folder'
Code is: cement-galaxy-alpha
2017-10-18 16:50:20 +02:00
2017-11-05 15:10:32 +01:00
Sending (->[1]63982)..
89% |███████████████████████████████████ | [12s:1s]
File sent (2.6 MB/s)
2017-10-17 17:21:47 +02:00
```
2017-10-18 16:50:20 +02:00
**Receiver:**
2017-10-17 17:21:47 +02:00
```
2017-10-24 12:18:49 +02:00
$ croc
2018-04-23 10:59:52 +02:00
Enter receive code: cement-galaxy-alpha
Receiving file (4.4 MB) into: some-file-or-folder
2017-10-18 16:50:20 +02:00
ok? (y/n): y
2017-10-20 14:33:06 +02:00
2017-11-05 15:10:32 +01:00
Receiving (<-[1]63975)..
97% |██████████████████████████████████████ | [13s:0s]
2018-04-23 10:59:52 +02:00
Received file written to some-file-or-folder (2.6 MB/s)
2017-10-17 17:21:47 +02:00
```
2017-10-21 20:47:55 +02:00
Note, by default, you don't need any arguments for receiving! This makes it possible for you to just double click the executable to run (nice for those of us that aren't computer wizards).
2017-10-21 16:15:06 +02:00
2018-04-24 12:21:50 +02:00
## Using *croc* in pipes
You can easily use *croc* in pipes when you need to send data through stdin or get data from stdout.
**Sender:**
```
$ cat some_file_or_folder | croc
```
In this case *croc* will automatically use the stdin data and send and assign a filename like "croc-stdin-123456789".
**Receiver:**
```
$ croc --code code-phrase --yes --stdout | more
```
Here the reciever specified the code (`--code`) so it will not be prompted, and also specified `--yes` so the file will be automatically accepted. The output goes to stdout when flagged with `--stdout`.
2017-10-21 16:15:06 +02:00
2017-10-18 16:50:20 +02:00
# Install
2017-10-17 17:21:47 +02:00
2017-10-22 19:32:25 +02:00
[Download the latest release for your system](https://github.com/schollz/croc/releases/latest).
2017-10-17 17:21:47 +02:00
2017-10-22 19:32:25 +02:00
Or, you can [install Go](https://golang.org/dl/) and build from source with `go get github.com/schollz/croc`.
# How does it work?
2018-04-25 11:22:13 +02:00
*croc* is similar to [magic-wormhole](https://github.com/warner/magic-wormhole#design) in spirit and design. Like *magic-wormhole*, *croc* generates a code phrase for you to share with your friend which allows secure end-to-end transfering of files and folders through a intermediary relay that connects the TCP ports between the two computers. The standard relay is on a public IP address (default `cowyo.com`), but before transmitting the file the two instances of *croc* send out UDP broadcasts to determine if they are both on the local network, and use a local relay instead of the cloud relay in the case that they are both local.
2017-10-22 19:32:25 +02:00
2018-04-25 11:22:13 +02:00
The code phrase for transfering files is just three words which are 16 random bits that are [menemonic encoded](http://web.archive.org/web/20101031205747/http://www.tothink.com/mnemonic/). This code phrase is hashed using sha256 and sent to the relay which maps that hashed code phrase to that connection. When the relay finds a matching code phrase hash for both the receiver and the sender (i.e. they both have the same code phrase), then the sender transmits the encrypted metadata to the receiver through the relay. Then the receiver decrypts and reviews the metadata (file name, size), and chooses whether to consent to the transfer.
2017-10-22 19:32:25 +02:00
After the receiver consents to the transfer, the sender transmits encrypted data through the relay. The relay setups up [Go channels](https://golang.org/doc/effective_go.html?h=chan#channels) for each connection which pipes all the data incoming from that sender's connection out to the receiver's connection. After the transmission the channels are destroyed and all the connection and meta data information is wiped from the relay server. The encrypted file data never is stored on the relay.
**Encryption**
2018-06-22 15:13:04 +02:00
Encryption uses AES-256 with a pbkdf2 derived key (see [RFC2898](http://www.ietf.org/rfc/rfc2898.txt)) where the code phrase shared between the sender and receiver is used as the passphrase. For each of the two encrypted data blocks (metadata stored on relay server, and file data transmitted), a random 8-byte salt is used and a IV is generated according to [NIST Recommendation for Block ciphers, Section 8.2](http://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-38d.pdf).
2017-10-18 16:50:20 +02:00
2017-10-22 19:32:25 +02:00
**Decryption**
2017-10-18 16:50:20 +02:00
2017-10-24 12:18:49 +02:00
On the receiver's computer, each piece of received encrypted data is written to a separate file. These files are concatenated and then decrypted. The hash of the decrypted file is then checked against the hash transmitted from the sender (part of the meta data block).
2017-10-18 03:13:08 +02:00
2017-10-18 16:50:20 +02:00
## Run your own relay
2018-04-24 09:03:07 +02:00
*croc* relies on a TCP relay to staple the parallel incoming and outgoing connections. The relay temporarily stores connection information and the encrypted meta information. The default uses a public relay at, `cowyo.com`, which has a 30-day uptime of 99.989% ([click here to check the current status of the public relay](https://stats.uptimerobot.com/lOwJYIgRm)).
2017-10-18 03:13:08 +02:00
2018-04-24 09:03:07 +02:00
You can also run your own relay, it is very easy. On your server, `your-server.com`, just run
2017-10-17 17:21:47 +02:00
```
2017-10-18 03:13:08 +02:00
$ croc -relay
2017-10-17 17:21:47 +02:00
```
2018-04-24 09:03:07 +02:00
Now, when you use *croc* to send and receive you should add `-server your-server.com` to use your relay server. Make sure to open up TCP ports 27001-27009.
2017-10-18 16:50:20 +02:00
2017-10-22 19:32:25 +02:00
# Contribute
2017-10-18 16:50:20 +02:00
2017-10-22 19:32:25 +02:00
I am awed by all the [great contributions](#acknowledgements) made! 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](http://ctt.ec/Rq054)).
2017-10-18 16:50:20 +02:00
2017-10-24 12:18:49 +02:00
# License
2017-10-18 16:50:20 +02:00
MIT
# Acknowledgements
Thanks...
- ...[@warner](https://github.com/warner) for the [idea](https://github.com/warner/magic-wormhole).
- ...[@tscholl2](https://github.com/tscholl2) for the [encryption gists](https://gist.github.com/tscholl2/dc7dc15dc132ea70a98e8542fefffa28).
2017-10-20 13:25:47 +02:00
- ...[@skorokithakis](https://github.com/skorokithakis) for [code on proxying two connections](https://www.stavros.io/posts/proxying-two-connections-go/).
2018-02-07 22:50:45 +01:00
- ...for making pull requests [@Girbons](https://github.com/Girbons), [@techtide](https://github.com/techtide), [@heymatthew](https://github.com/heymatthew), [@Lunsford94](https://github.com/Lunsford94), [@lummie](https://github.com/lummie), [@jesuiscamille](https://github.com/jesuiscamille), [@threefjord](https://github.com/threefjord), [@marcossegovia](https://github.com/marcossegovia), [@csleong98](https://github.com/csleong98), [@afotescu](https://github.com/afotescu), [@callmefever](https://github.com/callmefever), [@El-JojA](https://github.com/El-JojA), [@anatolyyyyyy](https://github.com/anatolyyyyyy), [@goggle](https://github.com/goggle), [@smileboywtu](https://github.com/smileboywtu)!