Key elements in CryptPad ======================== Zero-knowledge -------------- **All user data must be encrypted before being sent to the server.** What our server can see ~~~~~~~~~~~~~~~~~~~~~~~ Some data is always sent to the server because of the way the HTTP protocol works. This includes the user's IP address and their "user agent" (browser and operating system). It is possible to obfuscate these elements (with a VPN and browser extensions). CryptPad sends some unencrypted data in order to recognize each user: the "Public signing key", generated automatically by CryptPad for each user account. This is the only link between a user's data and their CryptPad account, however this is a short random string that does not contain any identifiable information. **We will not accept any contribution that sends unencrypted data that can identify a user (username, avatar, contact list, etc.) to the server, directly or undirectly.** Experience showed us that when we think we need such data, it is almost always possible to find a solution that fulfills the same requirements while protecting user data. Our codebase already contains many tools that can be used to solve these cases and our development team is willing to help any contributor that might encounter such difficulties. Content Security Policy (CSP) and security ------------------------------------------ The very function of most CryptPad applications is based on collaboration between different users. These applications allow a user to write content that will be displayed in another user's browser. A major concern, then, is to **prevent malicious actors from sending code that will be executed by another user's browser** (XSS vulnerability). To prevent this possibility, CryptPad uses 3 main mechanisms to guarantee data security. The first element to respect when writing code for CryptPad is to use "sanitizers", i.e. tools that clean up user content displayed to others. These sanitizers must remove anything that can be used to execute JavaScript, such as ``onclick="..."`` HTML attributes or ``