python 获取谷歌浏览器保存的密码


Posted in Python onJanuary 06, 2021

由于谷歌浏览器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 获取浏览器密码的资料请关注三水点靠木其它相关文章!

Python 相关文章推荐
解决python写的windows服务不能启动的问题
Apr 15 Python
python虚拟环境virtualenv的使用教程
Oct 20 Python
Python 创建空的list,以及append用法讲解
May 04 Python
python模块smtplib实现纯文本邮件发送功能
May 22 Python
python3中zip()函数使用详解
Jun 29 Python
python实现将多个文件分配到多个文件夹的方法
Jan 07 Python
python实现烟花小程序
Jan 30 Python
彻底理解Python中的yield关键字
Apr 01 Python
python正则表达式匹配不包含某几个字符的字符串方法
Jul 23 Python
mac 上配置Pycharm连接远程服务器并实现使用远程服务器Python解释器的方法
Mar 19 Python
Python requests上传文件实现步骤
Sep 15 Python
Python实现列表索引批量删除的5种方法
Nov 16 Python
python实现PolynomialFeatures多项式的方法
Jan 06 #Python
pytorch中index_select()的用法详解
Jan 06 #Python
Python之京东商品秒杀的实现示例
Jan 06 #Python
Python实现小黑屋游戏的完整实例
Jan 06 #Python
Jupyter Notebook 安装配置与使用详解
Jan 06 #Python
在Ubuntu中安装并配置Pycharm教程的实现方法
Jan 06 #Python
python requests库的使用
Jan 06 #Python
You might like
php对大文件进行读取操作的实现代码
2013/01/23 PHP
php的crc32函数使用时需要注意的问题(不然就是坑)
2015/04/21 PHP
JavaScript开发时的五个注意事项
2007/12/08 Javascript
JavaScript 基础问答三
2008/12/03 Javascript
JavaScript中访问节点对象的方法有哪些如何使用
2013/09/24 Javascript
浅析JavaScript中的隐式类型转换
2013/12/05 Javascript
JavaScript中的逻辑判断符&&、||与!介绍
2014/12/31 Javascript
NodeJS学习笔记之Connect中间件模块(一)
2015/01/27 NodeJs
javascript ASCII和Hex互转的实现方法
2016/12/27 Javascript
JS查找孩子节点简单示例
2019/07/25 Javascript
JavaScript Canvas编写炫彩的网页时钟
2019/10/16 Javascript
jquery实现垂直手风琴菜单
2020/03/04 jQuery
JS Thunk 函数的含义和用法实例总结
2020/04/08 Javascript
Laravel 如何在blade文件中使用Vue组件的示例代码
2020/06/28 Javascript
快速解决Vue、element-ui的resetFields()方法重置表单无效的问题
2020/08/12 Javascript
[01:51]DAC趣味视频-如何成为职业选手.mp4
2017/04/02 DOTA
python socket 超时设置 errno 10054
2014/07/01 Python
python从sqlite读取并显示数据的方法
2015/05/08 Python
python中循环语句while用法实例
2015/05/16 Python
python实现发送邮件及附件功能
2021/03/02 Python
用python脚本24小时刷浏览器的访问量方法
2018/12/07 Python
在Python中过滤Windows文件名中的非法字符方法
2019/06/10 Python
如何使用python爬虫爬取要登陆的网站
2019/07/12 Python
Python3.9又更新了:dict内置新功能
2020/02/28 Python
Expected conditions模块使用方法汇总代码解析
2020/08/13 Python
pycharm 2020.2.4 pip install Flask 报错 Error:Non-zero exit code的问题
2020/12/04 Python
python爬虫beautifulsoup解析html方法
2020/12/07 Python
红色康乃馨酒店:Red Carnation Hotels
2017/06/22 全球购物
JBL美国官方商店:扬声器、耳机等
2019/12/01 全球购物
网上祭先烈心得体会
2014/09/01 职场文书
领导干部四风问题自我剖析材料
2014/09/25 职场文书
教师对照四风自我剖析材料
2014/09/30 职场文书
追讨欠款律师函
2015/06/24 职场文书
大卫科波菲尔读书笔记
2015/06/30 职场文书
为什么MySQL分页用limit会越来越慢
2021/07/25 MySQL
td 内容自动换行 table表格td设置宽度后文字太多自动换行
2022/12/24 HTML / CSS