About “Coquelicot”

Coquelicot — /kɔ.kli.ko/ —  is a "one-click" file sharing web application with a focus on protecting users' privacy.

Basic principle: users can upload a file to the server, in return they get a unique URL which can be shared with others in order to download the file.

Coquelicot aims to protect, to some extent, users and system administrators from disclosure of the files exchanged from passive and not so active attackers.

Features

In order to prevent random Internet users to eat bandwidth and disk space, Coquelicot limits upload to authenticated users. It currently ships with three authentication mechanisms:

- "simplepass": uploading users need to provide a global,
  pre-shared, password;
- "imap": users will need to provide a login and a password,
  that are used to authenticate against an existing IMAP server.
- "ldap": users will need to provide a uid and a password,
  that are used to authenticate against an existing LDAP server.

It is possible to integrate more authentication mechanisms by implementing a single method, some JavaScript, and a partial template to render the common fields. For more information have a look at the notes below.

When uploading, a time limit has to be specified. The file will be unavailable once this much time has passed.

During a configurable period of time, trying to download the file will return a page saying "too late" instead of "not found".

A user might want to allow exactly one download of a file, to more closely replace an email attachment. The file will be removed after the first complete download and concurrent downloads are prevented.

Users having JavaScript enabled will see a nice progress bar during the file upload.

The application works fine without JavaScript or CSS.

URLs generated to download files uses the Base32 character set. This set is specifically designed to overcome misread of 'l', '1', '0' and 'O' characters. Coquelicot will automatically convert case and ambiguous characters to facilitate URL exchanges using pieces of paper.

While being uploaded, files are written to the disk using symmetric encryption. The encryption key is not stored directly by Coquelicot. It is either generated randomly and given as part of the download URL, or specified by the uploader.

When uploading, a password can be specified which will then be used to encrypt the file. For subsequent downloads, the password must be entered through in a POST'ed form. This prevents the password from appearing in most server logs.

To prevent disclosure of the shared file name, it is stored encrypted together with the file content. On the server, this encrypted file is stored with a random name.

The random names given in download URLs do not map directly to file names on the server. This prevent server logs from giving a direct mapping to the shared files. This creates another difficulty to link users to files through forensic techniques.

When a file has expired, it is removed from the server. In order to make it harder to retrieve its content through filesystem analysis, it is filled with zeros first.

Authors

Coquelicot © 2010-2013 potager.org <jardiniers@potager.org>
           © 2011 mh / immerda.ch  <mh+coquelicot@immerda.ch>

Coquelicot is distributed under the GNU Affero General Public License version 3 or (at your option) any later version.

LDAP authentication code initially provided by Rowan Thorpe.

jQuery is © 2011 John Resig. Licensed under the MIT license.
jquery.uploadProgress is © 2008 Piotr Sarnacki. Licensed under the MIT license.
lightboxFu is © 2008 Piotr Sarnacki. Licensed under the MIT license.