Vaulty is a terminal-based, open-source password manager that offers an efficient and lightweight solution for storing, editing, and browsing your saved passwords. It stores your passwords locally and employs strong encryption techniques to ensure maximum security.
- Disclaimer
- Features
- Technologies Used
- Installation
- Getting Started
- Usage
- Security
- Contribution
- License
Vaulty is designed to store passwords securely on your local machine. While it employs strong encryption, the security of your data depends on the security of your device. Ensure your device is protected against malware and unauthorized access. The developers are not responsible for any loss or breach of data.
- Local storage of passwords with encryption.
- Secure master password for accessing stored data.
- Add, retrieve, update, and delete password profiles.
- Automatic password generation.
- Clipboard integration for easy copying of usernames and passwords.
- Session timeout for enhanced security.
- Bash: The scripting language used for developing Vaulty.
- OpenSSL: For encrypting and decrypting passwords.
- pbcopy: For clipboard integration on macOS.
- htpasswd: For handling authentication
-
Clone the repository:
git clone https://github.com/yourusername/vaulty.git cd vaulty
-
Add Vaulty to your PATH by adding the following line to your
~/.zshrc
or~/.bashrc
:export PATH=$PATH:/path/to/vaulty
-
Source the updated profile to make the changes effective:
source ~/.zshrc # For zsh users source ~/.bashrc # For bash users
Run Vaulty from anywhere in your terminal:
vaulty
To add a new profile:
- Select the
(a)dd profile
option. - Enter the website name.
- Enter the username.
- Choose to either create a password or generate one.
To find a specific profile:
- Select the
(f)ind profile data
option. - Enter the website name.
- Choose to copy the username or password to the clipboard.
To retrieve all profiles:
- Select the
(r)etrieve all profile data
option. - All profiles will be displayed, excluding the master password.
To update an existing profile:
- Select the
(u)pdate profile data
option. - Enter the website name.
- Enter a new username or leave blank to keep the existing one.
- Choose to create or generate a new password, or leave blank to keep the existing one.
To delete a profile:
- Select the
(d)elete profile data
option. - Enter the website name.
- Confirm the deletion.
- Encryption: Passwords are encrypted using AES-256-CBC, a strong encryption standard.
- Master Password: Protects access to the stored data.
- Session Timeout: Automatically exits the application after 2 minutes of inactivity.
Contributions are welcome! Please fork the repository and submit a pull request with your changes. Ensure your code follows the project's style and passes all tests.
Vaulty is open-source software licensed under the MIT License. See the LICENSE file for more information.