Initial vault setup
This commit is contained in:
@@ -0,0 +1,96 @@
|
||||
---
|
||||
title: Send (Visee)
|
||||
created: 2026-06-07
|
||||
updated: 2026-06-07
|
||||
type: app
|
||||
tags: [catalogue, file-sharing, fork, mozilla-send, e2e]
|
||||
confidence: high
|
||||
contested: false
|
||||
sources: [https://selfh.st/apps/?tag=File+Sharing, https://github.com/visee/send]
|
||||
---
|
||||
|
||||
# 📁 Send (Visee)
|
||||
|
||||
> Fork communautaire de Mozilla Send, l'application de partage éphémère chiffré E2E, maintenue après l'abandon par Mozilla en 2020.
|
||||
|
||||
## 📋 Informations Générales
|
||||
|
||||
| Attribut | Valeur |
|
||||
|----------|--------|
|
||||
| **Nom** | Send (Visee) |
|
||||
| **Slug** | send-visee |
|
||||
| **Description** | Fork de Mozilla Send, partage éphémère chiffré E2E |
|
||||
| **Site officiel** | https://send.visee.com |
|
||||
| **Repository** | https://github.com/visee/send |
|
||||
| **Stars** | 301 ⭐ |
|
||||
| **Licence** | MPL-2.0 |
|
||||
| **Langage principal** | JavaScript |
|
||||
| **Catégorie** | File Sharing |
|
||||
| **Tags** | [catalogue, file-sharing, fork, mozilla-send, e2e] |
|
||||
|
||||
## 📝 Description
|
||||
Send est à l'origine un projet Mozilla lancé en 2017, qui a été abandonné en septembre 2020 lorsque la fondation a décidé de se concentrer sur d'autres priorités. Plusieurs forks communautaires ont émergé pour continuer le développement ; la version "Visee" est l'un d'eux, maintenue par un contributeur actif.
|
||||
|
||||
L'application implémente le partage de fichiers éphémères avec chiffrement end-to-end : les fichiers sont chiffrés dans le navigateur de l'émetteur avec Web Crypto API (AES-GCM), la clé transite via le fragment d'URL, et le serveur ne voit jamais le contenu. Les fichiers expirent automatiquement après un téléchargement ou après un délai configurable.
|
||||
|
||||
L'interface est celle de Mozilla Send : drag-and-drop, URL partageable, design épuré. Plusieurs forks coexistent (timvisee/send, visee/send, etc.) avec des variations mineures. Le principe reste le même : un successeur moderne et open source du défunt service Firefox Send.
|
||||
|
||||
## 🚀 Installation
|
||||
### Via Docker (recommandé)
|
||||
```yaml
|
||||
# docker-compose.yml
|
||||
services:
|
||||
send:
|
||||
image: ghcr.io/timvisee/send:latest
|
||||
container_name: send
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "1443:1443"
|
||||
environment:
|
||||
- SEND_FILE_DIR=/uploads
|
||||
- SEND_MAX_FILE_SIZE=10G
|
||||
- SEND_EXPIRE_TIMES=3600,86400,604800
|
||||
volumes:
|
||||
- send_data:/uploads
|
||||
volumes:
|
||||
send_data:
|
||||
```
|
||||
|
||||
### Installation manuelle
|
||||
```bash
|
||||
git clone https://github.com/visee/send.git
|
||||
cd send
|
||||
npm install
|
||||
npm run build
|
||||
npm start
|
||||
```
|
||||
|
||||
## ⚙️ Configuration
|
||||
- `SEND_FILE_DIR` : répertoire de stockage
|
||||
- `SEND_MAX_FILE_SIZE` : taille max par fichier
|
||||
- `SEND_EXPIRE_TIMES` : durées d'expiration proposées
|
||||
- Configuration du Sentry ou autre monitoring (optionnel)
|
||||
|
||||
## 🔗 Alternatives
|
||||
- **Cryptgeon** — équivalent moderne, support fichiers multiples
|
||||
- **Hemmelig** — chiffré E2E avec interface moderne
|
||||
- **PsiTransfer** — sans chiffrement E2E
|
||||
|
||||
## 🔒 Sécurité
|
||||
- Chiffrement E2E AES-GCM 256 dans le navigateur
|
||||
- Clé de déchiffrement dans fragment d'URL
|
||||
- HTTPS obligatoire
|
||||
- Auto-destruction après téléchargement
|
||||
|
||||
## 📚 Ressources
|
||||
- [Site officiel Visee Send](https://send.visee.com)
|
||||
- [Dépôt GitHub](https://github.com/visee/send)
|
||||
- [Documentation Mozilla Send archivée](https://github.com/mozilla/send)
|
||||
|
||||
## 🔗 Pages Liées
|
||||
- [[cat-file-sharing]] (n'existe pas encore, OK)
|
||||
- [[app-cryptgeon]]
|
||||
- [[app-hemmelig]]
|
||||
- [[app-traefik]]
|
||||
- [[recettes-docker-compose]]
|
||||
- [[securisation-home-lab]]
|
||||
Reference in New Issue
Block a user