cryptpad/readme.md

153 lines
5.7 KiB
Markdown
Raw Normal View History

2015-07-02 12:18:52 +00:00
[![XWiki labs logo](https://raw.githubusercontent.com/xwiki-labs/xwiki-labs-logo/master/projects/xwikilabs/xlabs-project.png "XWiki labs")](https://labs.xwiki.com/xwiki/bin/view/Main/WebHome)
2014-11-06 12:10:16 +00:00
<p align="center">
<img src="https://github.com/cjdelisle/cryptpad/raw/master/cryptofist.png" width="60%">
</p>
2014-10-31 15:42:58 +00:00
Unity is Strength - Collaboration is Key
2014-11-06 11:55:43 +00:00
2014-10-31 15:42:58 +00:00
![and_so_it_begins.png](https://github.com/cjdelisle/cryptpad/raw/master/and_so_it_begins.png "We are the 99%")
2014-10-31 16:05:09 +00:00
CryptPad is the **zero knowledge** realtime collaborative editor.
2014-10-31 15:42:58 +00:00
Encryption carried out in your web browser protects the data from the server, the cloud
2014-10-31 15:44:26 +00:00
and the NSA. This project uses the [CKEditor] Visual Editor and the [ChainPad] realtime
2014-10-31 15:42:58 +00:00
engine. The secret key is stored in the URL [fragment identifier] which is never sent to
the server but is available to javascript so by sharing the URL, you give authorization
2014-10-31 15:44:26 +00:00
to others who want to participate.
2014-10-31 15:42:58 +00:00
2016-09-26 14:14:45 +00:00
# Installation
2016-09-26 14:14:45 +00:00
Cryptpad depends on the Nodejs runtime.
We recommend installing it via [NVM](https://github.com/creationix/nvm "Node Version Manager") to ensure that you are running an up to date version.
2016-09-26 14:14:45 +00:00
Once you have a recent runtime:
2016-09-26 14:14:45 +00:00
```
git clone <this repo>
cd cryptpad
npm install
npm install -g bower ## if necessary
bower install
## copy config.js.dist to config.js
cp config.js.dist config.js
node ./server.js
```
2014-10-31 15:42:58 +00:00
## Configuration
CryptPad _should_ work with an unmodified configuration file, though there are many things which you may want to customize.
Attributes in the config should have comments indicating how they are used.
```
$EDITOR config.js
```
2016-03-04 11:14:40 +00:00
## Maintenance
To get access to the most recent codebase:
```
cd /your/cryptpad/instance/location;
git pull
```
To update dependencies:
```
# clientside dependencies
bower update;
# serverside dependencies
npm update;
```
To reset your instance of Cryptpad and remove all the data that is being stored:
2016-03-04 11:14:40 +00:00
```
# change into your cryptpad directory
2016-03-04 11:14:40 +00:00
cd /your/cryptpad/instance/location;
# delete the datastore
rm -rf ./datastore
2016-03-04 11:14:40 +00:00
```
If you are using the mongodb adaptor, [drop the relevant collection](https://docs.mongodb.org/manual/reference/method/db.collection.drop/#db.collection.drop).
2014-10-31 15:42:58 +00:00
If you are using the [leveldb adaptor](https://github.com/xwiki-labs/cryptpad-level-store), delete the datastore directory you have configured.
## Testing
To test CryptPad, go to http://your.server:3000/assert/
You can use WebDriver to run this test automatically by running TestSelenium.js but you will need chromedriver installed.
If you use Mac, you can `brew install chromedriver`.
2016-12-29 21:02:03 +00:00
# Setup using Docker
See [Cryptpad-Docker](cryptpad-docker.md)
## Security
CryptPad is *private*, not *anonymous*. Privacy protects your data, anonymity protects you.
As such, it is possible for a collaborator on the pad to include some silly/ugly/nasty things
in a CryptPad such as an image which reveals your IP address when your browser automatically
2016-08-22 00:54:42 +00:00
loads it or a script which plays Rick Astleys's greatest hits. It is possible for anyone
who does not have the key to be able to change anything in the pad or add anything, even the
2016-08-22 00:54:42 +00:00
server, however the clients will notice this because the content hashes in ChainPad will fail to
validate.
The server does have a certain power, it can send you evil javascript which does the wrong
thing (leaks the key or the data back to the server or to someone else). This is however an
[active attack] which makes it detectable. The NSA really hates doing these because they might
get caught and laughed at and humiliated in front of the whole world (again). If you're making
the NSA mad enough for them to use an active attack against you, Great Success Highfive, now take
the battery out of your computer before it spawns Agent Smith.
Still there are other low-lives in the world so using CryptPad over HTTPS is probably a good idea.
## Translations
We'd like to make it easy for more people to use encryption in their routine activities.
As such, we've tried to make language-specific parts of CryptPad translatable. If you're
able to translate CryptPad's interface, and would like to help, please contact us!
You can also see [our translation guide](/customize.dist/translations/README.md).
## Contacting Us
You can reach members of the CryptPad development team on [twitter](https://twitter.com/cryptpad),
via our [github issue tracker](https://github.com/xwiki-labs/cryptpad/issues/), on the
[freenode](http://webchat.freenode.net/?channels=%23cryptpad&uio=MT1mYWxzZSY5PXRydWUmMTE9Mjg3JjE1PXRydWUe7)
irc network, or by [email](mailto:research@xwiki.com).
2014-12-03 00:51:43 +00:00
## Contributing
We love Open Source and we love contribution. It is our intent to keep this project available
under the AGPL license forever but in order to finance more development on this and other FOSS
projects, we also wish to sell other licenses to this software. Before making a pull request,
please read and
[sign the Commons Management Agreement](https://www.clahub.com/agreements/cjdelisle/cryptpad).
2016-06-20 08:43:30 +00:00
If you have any questions or comments, or if you're interested in contributing to Cryptpad, come say hi on IRC, `#cryptpad` on Freenode.
2014-12-05 10:01:43 +00:00
### License
This software is and will always be available under the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the License, or (at your option)
any later version. If you wish to use this technology in a proprietary product, please contact
sales@xwiki.com
2014-10-31 15:44:26 +00:00
[ChainPad]: https://github.com/xwiki-contrib/chainpad
[CKEditor]: http://ckeditor.com/
[fragment identifier]: https://en.wikipedia.org/wiki/Fragment_identifier
[active attack]: https://en.wikipedia.org/wiki/Attack_(computing)#Types_of_attacks
2015-01-30 17:12:20 +00:00
[Creative Commons Attribution 2.5 License]: http://creativecommons.org/licenses/by/2.5/