python 获取谷歌浏览器保存的密码
更新时间:2021年01月06日 17:04:04 作者:rm-rf*
这篇文章主要介绍了python 获取谷歌浏览器保存的密码的示例代码,帮助大家更好的理解和使用python,感兴趣的朋友可以了解下
由于谷歌浏览器80以后版本采用了新的加密方式,所以记录在这里
# -*- coding:utf-8 -*- import os import json import base64 import sqlite3 from win32crypt import CryptUnprotectData from 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=chromium class Chrome: def __init__(self): self.local_state = os.environ['LOCALAPPDATA'] + r'\Google\Chrome\User Data\Local State' self.cookie_path = os.environ['LOCALAPPDATA'] + r"\Google\Chrome\User Data\Default\Login 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 获取浏览器密码的资料请关注脚本之家其它相关文章!
相关文章
tensorflow ckpt模型和pb模型获取节点名称,及ckpt转pb模型实例
今天小编就为大家分享一篇tensorflow ckpt模型和pb模型获取节点名称,及ckpt转pb模型实例,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧2020-01-01Python数据结构与算法之列表(链表,linked list)简单实现
这篇文章主要介绍了Python数据结构与算法之列表(链表,linked list)简单实现,具有一定参考价值,需要的朋友可以了解下。2017-10-10Python的Bottle框架中返回静态文件和JSON对象的方法
这篇文章主要介绍了Python的Bottle框架中返回静态文件和JSON对象的方法,Bottle框架在Python开发者中具有很高的人气,需要的朋友可以参考下2015-04-04Python Pandas如何获取和修改任意位置的值(at,iat,loc,iloc)
在我们对数据进行选择之后,需要对特定的数据进行设置更改,设置,下面这篇文章主要给大家介绍了关于Python Pandas如何获取和修改任意位置的值(at,iat,loc,iloc)的相关资料,文中通过实例代码介绍的非常详细,需要的朋友可以参考下2022-01-01Pytorch框架实现mnist手写库识别(与tensorflow对比)
这篇文章主要介绍了Pytorch框架实现mnist手写库识别(与tensorflow对比),文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧2020-07-07Django logging日志模块实例详解(日志记录模板配置)
Django使用python自带的logging作为日志打印工具,下面这篇文章主要给大家介绍了Django logging日志模块(日志记录模板配置)的相关资料,文中通过示例代码介绍的非常详细,需要的朋友可以参考下2022-08-08
最新评论