NullPass is a stateless password manager that's so lightweight, it's practically null in size.
Stop wasting your time synchronizing your encrypted vault. Remember one master password to access your passwords, anywhere, anytime. No sync needed. No Python bloat. No dependencies. Just pure, unadulterated bash magic.
If you want to use NullPass in your terminal, just download the script and make it executable:
wget https://raw.githubusercontent.com/metacritical/nullpass/main/nullpass
chmod +x nullpass
./nullpass --helpWe don't have web extensions. We're too null for that.
We don't have a mobile app. We're too null for that.
We don't have a website. We're too null for that.
- Size matters: While LessPass weighs in at thousands of lines of Python, NullPass is just a few hundred lines of bash. That's a null difference in size!
- Minimal dependencies: Aside from Python 3 for PBKDF2, it's just bash and ubiquitous Unix tools.
- Stateless: Like LessPass, NullPass doesn't store any passwords. It generates them on the fly.
- LessPass compatible: Uses the same PBKDF2-HMAC-SHA256 derivation as the official LessPass CLI, so outputs match for identical inputs.
- Punny: We're not afraid to make a null joke or two.
# Generate a password for a site
nullpass example.com myuser mymasterpassword
# Generate a password without symbols
nullpass example.com myuser mymasterpassword --no-symbols
# Generate a password with only lowercase, uppercase, and digits (shortcut)
nullpass example.com myuser mymasterpassword -lud
# Generate a password with only digits and length of 8
nullpass example.com myuser mymasterpassword -d -L 8
# Use environment variable for master password
NULLPASS_MASTER_PASSWORD="mymasterpassword" nullpass example.com myuser
# Prompt for values interactively
nullpass -p
# Copy password to clipboard
nullpass example.com myuser mymasterpassword -cHere's a sample invocation showing the prompt and resulting password:
$ ./nullpass example.org alice -L 16
Master Password: resilient-otter
(,VZWqC;jy]P>4PF- 💬 Add more null puns
- 📝 Write a guide on how to be even more null
- 🚀 Add a feature that's literally nothing
If you have any questions, create an issue. Protip: do a quick search first to see if someone else has asked the same question before!
You can also reach me at contact@nullpass.com (which is also null).
Based on an original idea from LessPass but with a null twist ❤️ Thanks to LessPass for the great idea, which we managed to fit into a file smaller than their requirements.txt.
This project is licensed under the terms of the GNU GPLv3.
This project exists thanks to all the people who contribute to the project. You can help too! There are many ways to help make NullPass more null.