All Projects → Doccrazy → stash-electron

Doccrazy / stash-electron

Licence: GPL-3.0 License
Stash - The friendly secret storage made for teams

Programming Languages

typescript
32286 projects
SCSS
7915 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to stash-electron

ModernKeePass
KDBX password manager for the Windows Store
Stars: ✭ 29 (+61.11%)
Mutual labels:  password-manager, keepass
Awesome Iam
👤 Identity and Access Management Knowledge for Cloud Platforms
Stars: ✭ 186 (+933.33%)
Mutual labels:  cryptography, secret-management
Gitpass
Open Source Your Password (Mismanagement)!
Stars: ✭ 113 (+527.78%)
Mutual labels:  cryptography, password-manager
Guardedbox
Online client-side manager for secure storage and secrets sharing.
Stars: ✭ 34 (+88.89%)
Mutual labels:  cryptography, password-manager
KeePassHax
A tool to extract a KeePass master password from memory
Stars: ✭ 57 (+216.67%)
Mutual labels:  password-manager, keepass
Masterpassword
Project moved to https://gitlab.com/spectre.app
Stars: ✭ 1,122 (+6133.33%)
Mutual labels:  cryptography, password-manager
Pass Winmenu
An easy-to-use Windows interface for pass
Stars: ✭ 160 (+788.89%)
Mutual labels:  cryptography, password-manager
Masterkey
secure interactive password manager with xchacha20poly1305, argon2id, and Go
Stars: ✭ 271 (+1405.56%)
Mutual labels:  cryptography, password-manager
keywi
Minimalistic Keepass plugin using Web Extensions and KeepassHTTP.
Stars: ✭ 33 (+83.33%)
Mutual labels:  password-manager, keepass
buttercup-importer
🎣 3rd-party archive importer for Buttercup
Stars: ✭ 39 (+116.67%)
Mutual labels:  password-manager, keepass
Pol
pol /pɵl/ is a modern command line password manager with deniable encryption
Stars: ✭ 25 (+38.89%)
Mutual labels:  cryptography, password-manager
KeePassTouch
Ubuntu Touch Version of KeePass (QML & C++)
Stars: ✭ 20 (+11.11%)
Mutual labels:  password-manager, keepass
Strongbox
A KeePass/Password Safe Client for iOS and OS X
Stars: ✭ 586 (+3155.56%)
Mutual labels:  cryptography, password-manager
Churp
Decentralize your secrets!
Stars: ✭ 100 (+455.56%)
Mutual labels:  cryptography, secret-management
Swifty
🔑 Free Offline Password Manager
Stars: ✭ 496 (+2655.56%)
Mutual labels:  cryptography, password-manager
Chest
Bash glue to encrypt and hide files
Stars: ✭ 123 (+583.33%)
Mutual labels:  cryptography, password-manager
Keepass2android
Password manager app for Android
Stars: ✭ 2,887 (+15938.89%)
Mutual labels:  password-manager, keepass
Pykeepass
Python library to interact with keepass databases (supports KDBX3 and KDBX4)
Stars: ✭ 231 (+1183.33%)
Mutual labels:  password-manager, keepass
keevault
Kee Vault is a password manager for your web browser. Password databases (Vaults) are encrypted using the KeePass storage format before being sent to a remote server for synchronisation across any modern device/browser
Stars: ✭ 57 (+216.67%)
Mutual labels:  password-manager, keepass
sandpass
Password manager for Sandstorm
Stars: ✭ 26 (+44.44%)
Mutual labels:  password-manager, keepass

Logo Stash - Team secret management made simple

Lint/Test Build/release

Stash is a graphical password and secret storage and management tool designed for collaboration, security and ease-of-use.

It features full end-to-end encryption and does not require a server component, giving you full control over who is able to access your secrets.

Stash will always be fully open-source without any subscriptions, "premium" features or hidden gotchas. You are free to use Stash in any environment, including commercially, as long as you respect the GPL license.

Features

  • Desktop application for Windows/Linux/Mac
  • Asymmetric end-to-end encryption using RSA and AES256
  • No server component required, secrets are stored and versioned by a simple git repository
  • Stores login credentials or any type of secret files
  • Fully featured user and access rights management
  • Git-based data integrity protection and audit log
  • Batteries included: No external tools, complex setup or command line usage required

Installation

Download the latest release from the releases page: GitHub release .

Due to the shutdown of Bintray, the Debian repository is no longer available. For Debian/Ubuntu, please download and install the .deb file directly or use the AppImage package.

Official Arch Linux packages are available in AUR named stash-electron and stash-electron-git.

Development snapshots are available for all platforms by installing the stash-electron-git package or downloading from the snapshots repository: GitHub release

Getting started

Stash requires a git repository to store its data. It is highly recommended to use a private, password-protected repository. All data is encrypted, the server owner will never get access to your secrets. Some free choices:

  • Bitbucket.org, free private repository for up to 5 users
  • Perforce Helix TeamHub, free private repository for up to 5 users
  • GitLab.com, unlimited free private repositories
  • Self-hosted: Run git init --bare on any accessible server

After creating the git repo, run Stash and navigate to the Settings page.

  1. Clone your repository to an empty folder by clicking Add, then selecting the Clone option.
  2. Configure your private key by clicking the highlighted Account status icon in the top right corner. You may either load an existing private key (e.g. SSH key, all formats incl. Putty supported), or generate a new key by clicking the button. You should always password-protect your private key.
    ⚠️ Your private key is your access pass to your secrets. If you lose your key, you lose access to all your secrets, and there is no way of recovery. So keep your key safe and secure, back it up and never share it with anyone!
  3. Add yourself to the list of known users on the Users page (add user -> use my key). All users and public keys must be known to Stash. Do not forget to save your changes.
  4. Open the Browser page and initialize the repository permissions by authorizing yourself on the root folder: Right-click on the root folder, select Permissions, toggle your user and confirm with Save.
  5. Your repository is now fully set up and ready for you to start creating folders and secrets!
  6. Every change you make automatically creates a git commit. Use the flashing icon in the top right to push/share your changes.

Development

Stash is a Node.js/React application running on Electron. To start development, you will need a recent Node.js/npm installation.

Install

First, clone the repo via git:

git clone https://github.com/Doccrazy/stash-electron.git stash-electron

And then install dependencies with npm.

cd stash-electron
npm install

Run

Start the app in the dev environment. This starts the renderer process in hot-module-replacement mode and starts a webpack dev server that sends hot updates to the renderer process:

npm run dev

Package

To package apps for the local platform:

npm run package

To package apps for all platforms:

First, refer to Multi Platform Build for dependencies.

Then,

npm run package all

Release

Versioning is done automatically based on git tags and commits. You should never have to set the version in package.json manually. Every git commit on master publishes a snapshot release to Github.

To create a final release, follow these steps to ensure the release is published correctly:

  1. Follow the guidelines of Semantic Versioning to determine a version number.
  2. Ensure CHANGELOG.md is complete, then update the release date and version and push the changes.
  3. Wait for the Travis build to complete and publish a snapshot.
  4. Perform any necessary tests on the snapshot version.
  5. Draft a new Github release, using vx.y.z as the tag name and x.y.z as the release name.
  6. After Travis has uploaded the files, copy the notes from CHANGELOG.md and publish the release.

License

GPLv3 © M. Piepkorn

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].