Skip to content

Instantly share code, notes, and snippets.

@sh4dowb
Created September 1, 2019 09:29
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save sh4dowb/10a64a954e3c6af895620fa0ebc83853 to your computer and use it in GitHub Desktop.
Save sh4dowb/10a64a954e3c6af895620fa0ebc83853 to your computer and use it in GitHub Desktop.
Chromium Linux Password Retriever (Decryption support)
# source: https://stackoverflow.com/questions/23153159/decrypting-chromium-cookies
# just put a few answers together for a working script
# python3 retrieve_password.py
# outputs passwords.csv
import secretstorage
import sqlite3
import os
import csv
from Crypto.Cipher import AES
from Crypto.Protocol.KDF import PBKDF2
bus = secretstorage.dbus_init()
collection = secretstorage.get_default_collection(bus)
for item in collection.get_all_items():
if item.get_label() == 'Chromium Safe Storage':
MY_PASS = item.get_secret()
break
else:
raise Exception('Chromium password not found!')
db = sqlite3.connect(os.getenv("HOME") + '/.config/chromium/Default/Login Data')
cursor = db.cursor()
cursor.execute('''SELECT signon_realm, username_value, password_value FROM logins WHERE LENGTH(password_value) != 0''')
all_rows = cursor.fetchall()
def clean(x):
return x[:-x[-1]].decode('utf8')
csvfile = open('passwords.csv', mode='w')
csvwrite = csv.writer(csvfile, delimiter=',', quotechar='"', quoting=csv.QUOTE_MINIMAL)
for entry in all_rows:
entryl = list(entry)
encrypted_value = entry[2]
encrypted_value = encrypted_value[3:]
salt = b'saltysalt'
iv = b' ' * 16
length = 16
my_pass = MY_PASS
iterations = 1
key = PBKDF2(my_pass, salt, length, iterations)
cipher = AES.new(key, AES.MODE_CBC, IV=iv)
decrypted = cipher.decrypt(encrypted_value)
entryl[2] = clean(decrypted)
csvwrite.writerow(entryl)
@betesh
Copy link

betesh commented Dec 1, 2019

👍 Thanks!

@antonilol
Copy link

Thanks!

btw, if you get the error
secretstorage.exceptions.SecretServiceNotAvailableException: The name org.freedesktop.secrets was not provided by any .service files
the password is peanuts (source: selected answer of the linked question), this worked for me

@afpd
Copy link

afpd commented Feb 24, 2023

If one has more than one chrome or chromium application, i.e. Signal one may need to modify the condition to be more specific:

if item.get_label() == 'Chromium Safe Storage' and item.get_attributes()['application'] == 'chromium':

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment