-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.py
126 lines (88 loc) · 3.94 KB
/
db.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
import os
import sys
import string , random , hashlib
from getpass import getpass
from rich import print as printc
from rich.console import Console
from argon2 import PasswordHasher
from Utils.dbconfig import Dbconfig
console = Console()
def CheckConfig():
db = Dbconfig()
cursor = db.cursor()
query = "SELECT SCHEMA_NAME FROM INFORMATION_SCHEMA.SCHEMATA WHERE SCHEMA_NAME = 'password_manager'"
cursor.execute(query)
results = cursor.fetchall()
db.close()
if len(results) != 0:
return True
return False
def makingSalt(length=35):
return ''.join(random.choices(string.ascii_uppercase + string.digits + string.ascii_lowercase + string.punctuation, k = length))
def Create():
if CheckConfig():
printc("[red][!] Already Configured! [/red]")
return
printc("[green][+] Creating new config [/green]")
# Create database
db = Dbconfig()
cursor = db.cursor()
try:
cursor.execute("CREATE DATABASE password_manager")
except Exception as e:
printc("[red][!] An error occurred while trying to create db. Check if database with name 'pm' already exists - if it does, delete it and try again.")
console.print_exception(show_locals=True)
sys.exit(0)
printc("[green][+][/green] Database 'password_manager' created")
# Create tables
query = "CREATE TABLE password_manager.app_secrets (masterkey_hash TEXT NOT NULL, Salt TEXT NOT NULL)"
res = cursor.execute(query)
printc("[green][+][/green] Table 'app_secrets' created ")
query = "CREATE TABLE Password_manager.password_entries (sitename TEXT NOT NULL, siteurl TEXT NOT NULL, email TEXT, username TEXT, password TEXT NOT NULL)"
res = cursor.execute(query)
printc("[green][+][/green] Table 'entries' created ")
mp = ""
printc("[green][+] A [bold]MASTER PASSWORD[/bold] is the only password you will need to remember in-order to access all your other passwords. Choosing a strong [bold]MASTER PASSWORD[/bold] is essential because all your other passwords will be [bold]encrypted[/bold] with a key that is derived from your [bold]MASTER PASSWORD[/bold]. Therefore, please choose a strong one that has upper and lower case characters, numbers and also special characters. Remember your [bold]MASTER PASSWORD[/bold] because it won't be stored anywhere by this program, and you also cannot change it once chosen. [/green]\n")
while 1:
mp = getpass("Choose a MASTER PASSWORD: ")
if mp == getpass("Re-type: ") and mp!="":
break
printc("[yellow][-] Please try again.[/yellow]")
ph = PasswordHasher()
hashed_mp = ph.hash(mp)
printc("[green][+][/green] Generated hash of MASTER PASSWORD")
salt = makingSalt()
printc("[green][+][/green] Device Secret generated")
query = "INSERT INTO Password_manager.app_secrets (masterkey_hash, Salt) values (%s, %s)"
val = (hashed_mp, salt)
cursor.execute(query, val)
db.commit()
printc("[green][+][/green] Added to the database")
printc("[green][+] Configuration done![/green]")
db.close()
def Remove():
printc("[red][-] Deleting a config clears the device secret and all your entries from the database. This means you will loose access to all your passwords that you have added into the password manager until now. Only do this if you truly want to 'destroy' all your entries. This action cannot be undone. [/red]")
while 1:
op = input("So are you sure you want to continue? (y/N): ")
if op.upper() == "Y":
break
if op.upper() == "N" or op.upper == "":
sys.exit(0)
else:
continue
printc("[green][-][/green] Deleting config")
if not CheckConfig():
printc("[yellow][-][/yellow] No configuration exists to delete!")
return
db = Dbconfig()
cursor = db.cursor()
query = "DROP DATABASE password_manager"
cursor.execute(query)
db.commit()
db.close()
printc("[green][+] Config deleted![/green]")
def Recreate():
print("Recreating the Configuration Again...")
Remove()
Create()
Recreate()