Skip to content

Files

Latest commit

 

History

History
40 lines (28 loc) · 1.93 KB

README.MD

File metadata and controls

40 lines (28 loc) · 1.93 KB

Python Password Manager

Note: This password manager was made as a project and is NOT intended for actual use.

Fernet Encryption

The encryption method used in this program comes from the python library Cryptography. This program uses Fernet and hazmat encryption methods to store sensitive data (in this case passwords) into a SQL DB.

Hash Verification

To authenticate the user, they are prompted to create a master password (that is also used to decrypt data) which is then added with some random shadow strings and stored using a SHA3_512 Hash Function and is verified at login. Whenever the user is prompted to verify their master password, the password they enter is added with randomly generated shadow string and compared to the hash of the stored master password and access if granted if the two hashes match.

   ##Every hash function is in misc file

Features

  • All CRUD functions Working.
  • All Encryptions and Decryptions working.
  • Pretty, Colored prompts
  • Multi User Supported
  • Windows, Linux, Mac, Android(Termux) Supported

Help

Common optional arguments:
  • -h, To get help.
  • -a, To add another user.
  • --m, Master account[Require only password].
All your Datas stored in Databases folder

Vulnerability

As mentioned at the top, this was made as a project and not intended for actual use. Below I demonstrate what any expert hacker can accomplish by exploiting a vulnerability. Just kidding 🤪 anyone can do this. Since the files are stored locally, they can easily be deleted without needing to enter any credentials and consequently all stored passwords are gone along with other data (it is good have backup at any other location). But it is very much hard to decrypt your credentials🤟.

Requirements

Use pip to install cryptography CLI:

pip install cryptography

My Website

🌏 viswa2k.tk