All Projects → unrelentingtech → Freepass

unrelentingtech / Freepass

Licence: unlicense
[DEPRECATED] password manager thing

Programming Languages

rust
11053 projects

Projects that are alternatives of or similar to Freepass

Passky-Desktop
Desktop application for Passky (password manager)
Stars: ✭ 47 (-84.74%)
Mutual labels:  password-manager, password
mpw-rs
Master Password in Pure Rust
Stars: ✭ 34 (-88.96%)
Mutual labels:  password-manager, password
PassHUD
A HUD-style interface for pass on macOS
Stars: ✭ 31 (-89.94%)
Mutual labels:  password-manager, password
Keepwords
📱🔐 Need an iOS password managing app with no pods? We got you covered!
Stars: ✭ 17 (-94.48%)
Mutual labels:  password-manager, password
password-list
Password lists with top passwords to optimize bruteforce attacks
Stars: ✭ 174 (-43.51%)
Mutual labels:  password-manager, password
buttercup-importer
🎣 3rd-party archive importer for Buttercup
Stars: ✭ 39 (-87.34%)
Mutual labels:  password-manager, password
turaku-client
Web / Electron client application for Turaku
Stars: ✭ 27 (-91.23%)
Mutual labels:  password-manager, password
Gopassbridge
A web extension for firefox and chrome to insert login credentials from gopass
Stars: ✭ 182 (-40.91%)
Mutual labels:  password, password-manager
mopass
A OpenSource Clientless & Serverless Password Manager
Stars: ✭ 40 (-87.01%)
Mutual labels:  password-manager, password
PASSY
This project has moved to GitLab.com
Stars: ✭ 14 (-95.45%)
Mutual labels:  password-manager, password
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 (-81.49%)
Mutual labels:  password-manager, password
PasswordX
Offline password manager for iOS/macOS
Stars: ✭ 26 (-91.56%)
Mutual labels:  password-manager, password
Python Scripts
Collection of Various Python Script's.💻
Stars: ✭ 195 (-36.69%)
Mutual labels:  password, password-manager
pass-audit
A pass extension for auditing your password repository.
Stars: ✭ 71 (-76.95%)
Mutual labels:  password-manager, password
Pass Update
A pass extension that provides an easy flow for updating passwords.
Stars: ✭ 191 (-37.99%)
Mutual labels:  password, password-manager
pwm
自用的密码管理工具
Stars: ✭ 34 (-88.96%)
Mutual labels:  password-manager, password
Keepass4web
An application that serves KeePass database entries on a web frontend
Stars: ✭ 115 (-62.66%)
Mutual labels:  password, password-manager
Keeweb
Free cross-platform password manager compatible with KeePass
Stars: ✭ 10,587 (+3337.34%)
Mutual labels:  password, password-manager
Passky-Server
API and Database for Passky (password manager)
Stars: ✭ 77 (-75%)
Mutual labels:  password-manager, password
gpgpwd
Moved to GitLab
Stars: ✭ 22 (-92.86%)
Mutual labels:  password-manager, password

NOTE: this is pretty much abandoned, I recommend Bitwarden now. There is an export command in the CLI that produces CSV suitable for import into Bitwarden.

NOTE: if you've been using freepass before June 03, 2017: you need to checkout the serde-migration git tag, build the CLI, and mergein your vault into a new one using that particular version.

freepass unlicense

The free password manager for power users.

X11 screencast gif

What's going on?

  • A password manager.
  • Based on the Master Password algorithm, generates the same passwords as the Master Password apps.
  • But wait, there's more! Why stop at passwords? It generates...
    • Ed25519 digital signature keys for...
      • OpenSSH: Freepass adds private keys directly to a running ssh-agent & exports public keys in OpenSSH format!
      • signify: Freepass signs files & exports public keys in signify format!
      • TODO SQRL
    • Raw 256-bit keys for symmetric ciphers.
    • TODO BIP39-compatible passphrases.
  • Yes, all of the above is derived from your master password and full name, you can always recover it by entering the same data!
  • The generator settings (site names, counters) are stored in vault files:
    • Serialized into CBOR.
    • Encrypted with NaCl secretbox for each entry + AES for the whole file.
    • (Keys are derived from the master password like the generated passwords.)
    • Every time you save a vault file, its size changes randomly. That's a feature. Some random junk is added to make it a bit harder to count how many passwords you have without opening the file.
  • You can also store passwords and text in these vault files (for stuff that can't be generated).
  • You can merge two vault files (e.g. from sync conflicts).
  • You can import KeePass 2 (kdbx) files.

How?

  • Freepass is written in the Rust programming language and uses libsodium as the crypto library.
  • Very modular code, easy to audit.
    • You can separately check that the core library does everything correctly, and that the user interface passes your data to the core library, not to an evil server.
  • Some parts were written as completely separate Rust crates:
  • Completely free software: public domain / Unlicense.

Where?

Freepass is (going to be) available on different platforms:

  • cli: for UNIX-like systems
  • A desktop GUI and mobile apps will be available in the future.

Each version has its own README!

Contributing

By participating in this project you agree to follow the Contributor Code of Conduct.

The list of contributors is available on GitHub.

License

This is free and unencumbered software released into the public domain. For more information, please refer to the UNLICENSE file or unlicense.org.

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].