色综合图-色综合图片-色综合图片二区150p-色综合图区-玖玖国产精品视频-玖玖香蕉视频

您的位置:首頁技術文章
文章詳情頁

python 獲取谷歌瀏覽器保存的密碼

瀏覽:2日期:2022-06-30 11:06:41

由于谷歌瀏覽器80以后版本采用了新的加密方式,所以記錄在這里

# -*- coding:utf-8 -*-import osimport jsonimport base64import sqlite3from win32crypt import CryptUnprotectDatafrom cryptography.hazmat.primitives.ciphers.aead import AESGCM# pip install pywin32# pip install cryptography# 文檔:https://source.chromium.org/chromium/chromium/src/+/master:components/os_crypt/os_crypt_win.cc?q=OSCrypt&ss=chromiumclass Chrome: def __init__(self): self.local_state = os.environ[’LOCALAPPDATA’] + r’GoogleChromeUser DataLocal State’ self.cookie_path = os.environ[’LOCALAPPDATA’] + r'GoogleChromeUser DataDefaultLogin Data' def get_key(self): with open(self.local_state, ’r’, encoding=’utf-8’) as f: base64_encrypted_key = json.load(f)[’os_crypt’][’encrypted_key’] encrypted_key_with_header = base64.b64decode(base64_encrypted_key) # 去掉開頭的DPAPI encrypted_key = encrypted_key_with_header[5:] key_ = CryptUnprotectData(encrypted_key, None, None, None, 0)[1] return key_ @staticmethod def decrypt_string(key, secret, salt=None): ''' 解密 ''' # 去掉’v10’ nonce, cipher_bytes = secret[3:15], secret[15:] aes_gcm = AESGCM(key) return aes_gcm.decrypt(nonce, cipher_bytes, salt).decode(’utf-8’) @staticmethod def encrypt_string(key, data, salt=None): ''' 加密 ''' aes_gcm = AESGCM(key) prefix = 'v10'.encode('utf-8') # 隨機生成12位字符串,拼接'v10' 共15位 nonce = os.urandom(12) cipher_bytes = data.encode('utf-8') return prefix + nonce + aes_gcm.encrypt(nonce, cipher_bytes, salt) def get_password(self, host): sql = f'select username_value,password_value from logins where signon_realm =’{host}’;' with sqlite3.connect(self.cookie_path) as conn: cu = conn.cursor() res = cu.execute(sql).fetchall() cu.close() result = [] key = self.get_key() for name, encrypted_value in res:if encrypted_value[0:3] == b’v10’ or encrypted_value[0:3] == b’v11’: password = self.decrypt_string(key, encrypted_value)else: password = CryptUnprotectData(encrypted_value)[1].decode()result.append({’user_name’: name, ’password’: password}) return result def set_password(self, host, username, password): key = self.get_key() encrypt_secret = self.encrypt_string(key, password) sq = f'''update logins set password_value=x’{encrypt_secret.hex()}’ where signon_realm =’{host}’ and username_value=’{username}’;''' with sqlite3.connect(self.cookie_path) as conn: cu = conn.cursor() cu.execute(sq) conn.commit()if __name__ == ’__main__’: a = Chrome() aa = a.get_password('https://baidu.com') print(aa)

以上就是python 獲取谷歌瀏覽器保存的密碼的詳細內容,更多關于python 獲取瀏覽器密碼的資料請關注好吧啦網其它相關文章!

標簽: Python 編程
相關文章:
主站蜘蛛池模板: 成人影院午夜久久影院 | 欧美一线高本道高清在线 | 国产三级香港在线观看 | 国内精品一区二区在线观看 | 怡红院老首页主页入口 | 全部孕妇毛片丰满孕妇孕交 | 一级做a爱过程免费视频时看 | 国产成人高清一区二区私人 | 亚洲视频在线观看视频 | 日韩一级一片 | 欧美一级人与动毛片免费播放 | 窝窝女人体国产午夜视频 | 最新更新国内自拍视频 | 亚洲欧美一区二区三区不卡 | 日韩一级大片 | 日韩一级在线视频 | 全国男人的天堂天堂网 | 亚洲第一中文 | 久久久久欧美情爱精品 | 91久久亚洲国产成人精品性色 | se94se欧美| 亚洲国产欧洲精品路线久久 | 久久免费精品视频在线观看 | 日本三级一区二区三区 | 中文字幕有码在线播放 | 成人视视 | 成年人视频网站免费 | 日韩美女一级毛片a | 亚洲一区二区天海翼 | 乱淫67194| 97一级毛片全部免费播放 | 亚洲欧美人妖另类激情综合区 | 久久精品福利视频在线观看 | 国产资源免费 | 成人老司机深夜福利久久 | 国产亚洲精品激情一区二区三区 | 欧美三级美国一级 | 天天看夜夜 | 欧美激情第一欧美在线 | 欧美性色黄大片一级毛片视频 | 欧美一级免费在线观看 |