劫持微信聊天记录并分析还原 —— 合并解密后的数据库(三)


  • 本工具设计的初衷是用来获取微信账号的相关信息并解析PC版微信的数据库。

  • 程序以 Python 语言开发,可读取、解密、还原微信数据库并帮助用户查看聊天记录,还可以将其聊天记录导出为csv、html等格式用于AI训练,自动回复或备份等等作用。下面我们将深入探讨这个工具的各个方面及其工作原理。

  • 本项目仅供学习交流使用,严禁用于商业用途或非法途径,任何违反法律法规、侵犯他人合法权益的行为,均与本项目及其开发者无关,后果由行为人自行承担。


【完整演示工具下载】

https://www.chwm.vip/index.html?aid=23


我们接着上一篇文章《劫持微信聊天记录并分析还原 —— 解密数据库(二)》将解密后的微信数据库合并为一整个DB文件。


微信数据库存放目录:
微信数据库存放目录

解密后的微信数据库:
解密后的微信数据库

详细命令:
merge -i "C:\Users\admin\AppData\Local\Temp\wx_tmp" -o "C:\Users\admin\AppData\Local\Temp\wxdb_all.db"

  • -i 为解密后微信数据库的存放路径
  • -o 为合并微信数据库的存放路径与文件名

运行命令后,我们可以看到在此位置 "C:\Users\admin\AppData\Local\Temp" 下生成了一个以 “wxdb_all.db” 命名的文件,这便是解密后的微信数据库合并成功的文件,下一步我们将详细解读微信数据库的结构以及如何打开并访问里面的内容。


部分现实代码:

# -*- coding: utf-8 -*-#
# -------------------------------------------------------------------------------
# Name:         merge_db.py
# Description:  
# Author:       Rainbow(www.chwm.vip)
# Date:         2024/11/08
# -------------------------------------------------------------------------------
import logging
import os
import shutil
import sqlite3
import subprocess
import time
from typing import Listfrom .decryption import batch_decrypt
from .wx_info import get_core_db
from .utils import wx_core_loger, wx_core_error, CORE_DB_TYPE@wx_core_error
def execute_sql(connection, sql, params=None):"""执行给定的SQL语句,返回结果。参数:- connection: SQLite连接- sql:要执行的SQL语句- params:SQL语句中的参数"""try:# connection.text_factory = bytescursor = connection.cursor()if params:cursor.execute(sql, params)else:cursor.execute(sql)return cursor.fetchall()except Exception as e:try:connection.text_factory = bytescursor = connection.cursor()if params:cursor.execute(sql, params)else:cursor.execute(sql)rdata = cursor.fetchall()connection.text_factory = strreturn rdataexcept Exception as e:wx_core_loger.error(f"**********\nSQL: {sql}\nparams: {params}\n{e}\n**********", exc_info=True)return None@wx_core_error
def check_create_sync_log(connection):"""检查是否存在表 sync_log,用于记录同步记录,包括微信数据库路径,表名,记录数,同步时间:param connection: SQLite连接:return: True or False"""out_cursor = connection.cursor()# 检查是否存在表 sync_log,用于记录同步记录,包括微信数据库路径,表名,记录数,同步时间sync_log_status = execute_sql(connection, "SELECT name FROM sqlite_master WHERE type='table' AND name='sync_log'")if len(sync_log_status) < 1:#  db_path 微信数据库路径,tbl_name 表名,src_count 源数据库记录数,current_count 当前合并后的数据库对应表记录数sync_record_create_sql = ("CREATE TABLE sync_log (""id INTEGER PRIMARY KEY AUTOINCREMENT,""db_path TEXT NOT NULL,""tbl_name TEXT NOT NULL,""src_count INT,""current_count INT,""createTime INT DEFAULT (strftime('%s', 'now')), ""updateTime INT DEFAULT (strftime('%s', 'now'))"");")out_cursor.execute(sync_record_create_sql)# 创建索引out_cursor.execute("CREATE INDEX idx_sync_log_db_path ON sync_log (db_path);")out_cursor.execute("CREATE INDEX idx_sync_log_tbl_name ON sync_log (tbl_name);")# 创建联合索引,防止重复out_cursor.execute("CREATE UNIQUE INDEX idx_sync_log_db_tbl ON sync_log (db_path, tbl_name);")connection.commit()out_cursor.close()return True@wx_core_error
def check_create_file_md5(connection):"""检查是否存在表 file_md5,用于记录文件信息,后续用于去重等操作,暂时闲置"""pass@wx_core_error
def merge_db(db_paths: List[dict], save_path: str = "merge.db", is_merge_data: bool = True,startCreateTime: int = 0, endCreateTime: int = 0):"""合并数据库 会忽略主键以及重复的行。:param db_paths: [{"db_path": "xxx", "de_path": "xxx"},...]db_path表示初始路径,de_path表示解密后的路径;初始路径用于保存合并的日志情况,解密后的路径用于读取数据:param save_path: str 输出文件路径:param is_merge_data: bool 是否合并数据(如果为False,则只解密,并创建表,不插入数据):param startCreateTime: 开始时间戳 主要用于MSG数据库的合并:param endCreateTime:  结束时间戳 主要用于MSG数据库的合并:return:"""if os.path.isdir(save_path):save_path = os.path.join(save_path, f"merge_{int(time.time())}.db")if isinstance(db_paths, list):# alias, file_pathdatabases = {f"dbi_{i}": (db['db_path'],db.get('de_path', db['db_path'])) for i, db in enumerate(db_paths)}else:raise TypeError("db_paths 类型错误")outdb = sqlite3.connect(save_path)is_sync_log = check_create_sync_log(outdb)if not is_sync_log:wx_core_loger.warning("创建同步记录表失败")out_cursor = outdb.cursor()# 将MSG_db_paths中的数据合并到out_db_path中for alias, db in databases.items():db_path = db[0]de_path = db[1]# 附加数据库sql_attach = f"ATTACH DATABASE '{de_path}' AS {alias}"out_cursor.execute(sql_attach)outdb.commit()sql_query_tbl_name = f"SELECT tbl_name, sql FROM {alias}.sqlite_master WHERE type='table' ORDER BY tbl_name;"tables = execute_sql(outdb, sql_query_tbl_name)for table in tables:table, init_create_sql = table[0], table[1]table = table if isinstance(table, str) else table.decode()init_create_sql = init_create_sql if isinstance(init_create_sql, str) else init_create_sql.decode()if table == "sqlite_sequence":continueif "CREATE TABLE".lower() not in str(init_create_sql).lower():continue# 获取表中的字段名sql_query_columns = f"PRAGMA table_info({table})"columns = execute_sql(outdb, sql_query_columns)if table == "ChatInfo" and len(columns) > 12:  # bizChat中的ChatInfo表与MicroMsg中的ChatInfo表字段不同continuecol_type = {(i[1] if isinstance(i[1], str) else i[1].decode(),i[2] if isinstance(i[2], str) else i[2].decode())for i in columns}columns = [i[0] for i in col_type]if not columns or len(columns) < 1:continue# 创建表tablesql_create_tbl = f"CREATE TABLE IF NOT EXISTS {table} AS SELECT *  FROM {alias}.{table} WHERE 0 = 1;"out_cursor.execute(sql_create_tbl)# 创建包含 NULL 值比较的 UNIQUE 索引index_name = f"{table}_unique_index"coalesce_columns = ','.join(f"COALESCE({column}, '')" for column in columns)sql = f"CREATE UNIQUE INDEX IF NOT EXISTS {index_name} ON {table} ({coalesce_columns})"out_cursor.execute(sql)# 插入sync_logsql_query_sync_log = f"SELECT src_count FROM sync_log WHERE db_path=? AND tbl_name=?"sync_log = execute_sql(outdb, sql_query_sync_log, (db_path, table))if not sync_log or len(sync_log) < 1:sql_insert_sync_log = "INSERT INTO sync_log (db_path, tbl_name, src_count, current_count) VALUES (?, ?, ?, ?)"out_cursor.execute(sql_insert_sync_log, (db_path, table, 0, 0))outdb.commit()if is_merge_data:# 比较源数据库和合并后的数据库记录数log_src_count = execute_sql(outdb, sql_query_sync_log, (db_path, table))[0][0]src_count = execute_sql(outdb, f"SELECT COUNT(*) FROM {alias}.{table}")[0][0]if src_count <= log_src_count:wx_core_loger.info(f"忽略 {db_path} {de_path} {table} {src_count} {log_src_count}")continue# 构建数据查询sqlsql_base = f"SELECT {','.join([i for i in columns])} FROM {alias}.{table} "where_clauses, params = [], []if "CreateTime" in columns:if startCreateTime > 0:where_clauses.append("CreateTime > ?")params.append(startCreateTime)if endCreateTime > 0:where_clauses.append("CreateTime < ?")params.append(endCreateTime)# 如果有WHERE子句,将其添加到SQL语句中,并添加ORDER BY子句sql = f"{sql_base} WHERE {' AND '.join(where_clauses)} ORDER BY CreateTime" if where_clauses else sql_basesrc_data = execute_sql(outdb, sql, tuple(params))if not src_data or len(src_data) < 1:continue# 插入数据sql = f"INSERT OR IGNORE INTO {table} ({','.join([i for i in columns])}) VALUES ({','.join(['?'] * len(columns))})"try:out_cursor.executemany(sql, src_data)# update sync_logsql_update_sync_log = ("UPDATE sync_log ""SET src_count = ? ,"f"current_count=(SELECT COUNT(*) FROM {table}) ""WHERE db_path=? AND tbl_name=?")out_cursor.execute(sql_update_sync_log, (src_count, db_path, table))except Exception as e:wx_core_loger.error(f"error: {db_path}\n{de_path}\n{table}\n{sql}\n{src_data}\n{len(src_data)}\n{e}\n",exc_info=True)# 分离数据库sql_detach = f"DETACH DATABASE {alias}"out_cursor.execute(sql_detach)outdb.commit()out_cursor.close()outdb.close()return save_path# @wx_core_error
# def merge_db1(db_paths: list[dict], save_path: str = "merge.db", is_merge_data: bool = True,
#               startCreateTime: int = 0, endCreateTime: int = 0):
#     """
#     合并数据库 会忽略主键以及重复的行。
#     :param db_paths: [{"db_path": "xxx", "de_path": "xxx"},...]
#                         db_path表示初始路径,de_path表示解密后的路径;初始路径用于保存合并的日志情况,解密后的路径用于读取数据
#     :param save_path: str 输出文件路径
#     :param is_merge_data: bool 是否合并数据(如果为False,则只解密,并创建表,不插入数据)
#     :param startCreateTime: 开始时间戳 主要用于MSG数据库的合并
#     :param endCreateTime:  结束时间戳 主要用于MSG数据库的合并
#     :return:
#     """
#     if os.path.isdir(save_path):
#         save_path = os.path.join(save_path, f"merge_{int(time.time())}.db")
#
#     if isinstance(db_paths, list):
#         # alias, file_path
#         databases = {f"MSG{i}": (db['db_path'],
#                                  db.get('de_path', db['db_path'])
#                                  ) for i, db in enumerate(db_paths)
#                      }
#     else:
#         raise TypeError("db_paths 类型错误")
#
#     from sqlalchemy import create_engine, MetaData, Table, select, insert, Column, UniqueConstraint
#     from sqlalchemy.orm import sessionmaker
#     from sqlalchemy import inspect, PrimaryKeyConstraint
#
#     outdb = create_engine(f"sqlite:///{save_path}", echo=False)
#
#     # 创建Session实例
#     Session = sessionmaker()
#     Session.configure(bind=outdb)
#     session = Session()
#
#     # 将MSG_db_paths中的数据合并到out_db_path中
#     for alias, db in databases.items():
#         db_path = db[0]
#         de_path = db[1]
#
#         db_engine = create_engine(f"sqlite:///{de_path}", echo=False)
#
#         # 反射源数据库的表结构
#         metadata = MetaData()
#         metadata.reflect(bind=db_engine)
#
#         # 创建表
#         outdb_metadata = MetaData()
#         inspector = inspect(db_engine)
#         table_names = [i for i in inspector.get_table_names() if i not in ["sqlite_sequence"]]
#         for table_name in table_names:
#             # 创建表table
#             columns_list_dict = inspector.get_columns(table_name)
#             col_names = [i['name'] for i in columns_list_dict]
#             columns = [Column(i['name'], i['type'], primary_key=False) for i in columns_list_dict]
#             table = Table(table_name, outdb_metadata, *columns)
#             if len(columns) > 1:  # 联合索引
#                 unique_constraint = UniqueConstraint(*col_names, name=f"{table_name}_unique_index")
#                 table.append_constraint(unique_constraint)
#             else:
#                 table.append_constraint(PrimaryKeyConstraint(*col_names))
#             table.create(outdb, checkfirst=True)
#
#         # 将源数据库中的数据插入目标数据库
#         outdb_metadata = MetaData()
#         for table_name in metadata.tables:
#             source_table = Table(table_name, metadata, autoload_with=db_engine)
#             outdb_table = Table(table_name, outdb_metadata, autoload_with=outdb)
#
#             # 查询源表中的所有数据
#             query = select(source_table)
#             with db_engine.connect() as connection:
#                 result = connection.execute(query).fetchall()
#
#             # 插入到目标表中
#             for row in result:
#                 row_data = row._asdict()
#
#                 # 尝试将所有文本数据转换为 UTF-8
#                 for key, value in row_data.items():
#                     if isinstance(value, str):
#                         row_data[key] = value.encode("utf-8")
#
#                 insert_stmt = insert(outdb_table).values(row_data)
#                 try:
#                     session.execute(insert_stmt)
#                 except Exception as e:
#                     pass
#         db_engine.dispose()
#
#     # 提交事务
#     session.commit()
#     # 关闭Session
#     session.close()
#     outdb.dispose()
#     return save_path@wx_core_error
def decrypt_merge(wx_path: str, key: str, outpath: str = "",merge_save_path: str = None,is_merge_data=True, is_del_decrypted: bool = True,startCreateTime: int = 0, endCreateTime: int = 0,db_type=None) -> (bool, str):"""解密合并数据库 msg.db, microMsg.db, media.db,注意:会删除原数据库:param wx_path: 微信路径 eg: C:\\*******\\WeChat Files\\wxid_*********:param key: 解密密钥:param outpath: 输出路径:param merge_save_path: 合并后的数据库路径:param is_merge_data: 是否合并数据(如果为False,则只解密,并创建表,不插入数据):param is_del_decrypted: 是否删除解密后的数据库(除了合并后的数据库):param startCreateTime: 开始时间戳 主要用于MSG数据库的合并:param endCreateTime:  结束时间戳 主要用于MSG数据库的合并:param db_type: 数据库类型,从核心数据库中选择:return: (true,解密后的数据库路径) or (false,错误信息)"""if db_type is None:db_type = []outpath = outpath if outpath else "decrypt_merge_tmp"merge_save_path = os.path.join(outpath,f"merge_{int(time.time())}.db") if merge_save_path is None else merge_save_pathdecrypted_path = os.path.join(outpath, "decrypted")if not wx_path or not key or not os.path.exists(wx_path):wx_core_loger.error("参数错误", exc_info=True)return False, "参数错误"# 解密code, wxdbpaths = get_core_db(wx_path, db_type)if not code:wx_core_loger.error(f"获取数据库路径失败{wxdbpaths}", exc_info=True)return False, wxdbpaths# 判断out_path是否为空目录if os.path.exists(decrypted_path) and os.listdir(decrypted_path):for root, dirs, files in os.walk(decrypted_path, topdown=False):for name in files:os.remove(os.path.join(root, name))for name in dirs:os.rmdir(os.path.join(root, name))if not os.path.exists(decrypted_path):os.makedirs(decrypted_path)wxdbpaths = {i["db_path"]: i for i in wxdbpaths}# 调用 decrypt 函数,并传入参数   # 解密code, ret = batch_decrypt(key=key, db_path=list(wxdbpaths.keys()), out_path=decrypted_path, is_print=False)if not code:wx_core_loger.error(f"解密失败{ret}", exc_info=True)return False, retout_dbs = []for code1, ret1 in ret:if code1:out_dbs.append(ret1)parpare_merge_db_path = []for db_path, out_path, _ in out_dbs:parpare_merge_db_path.append({"db_path": db_path, "de_path": out_path})merge_save_path = merge_db(parpare_merge_db_path, merge_save_path, is_merge_data=is_merge_data,startCreateTime=startCreateTime, endCreateTime=endCreateTime)if is_del_decrypted:shutil.rmtree(decrypted_path, True)if isinstance(merge_save_path, str):return True, merge_save_pathelse:return False, "未知错误"@wx_core_error
def merge_real_time_db(key, merge_path: str, db_paths: [dict] or dict, real_time_exe_path: str = None):"""合并实时数据库消息,暂时只支持64位系统:param key:  解密密钥:param merge_path:  合并后的数据库路径:param db_paths:  [dict] or dict eg: {'wxid': 'wxid_***', 'db_type': 'MicroMsg','db_path': 'C:\**\wxid_***\Msg\MicroMsg.db', 'wxid_dir': 'C:\***\wxid_***'}:param real_time_exe_path:  实时数据库合并工具路径:return:"""try:import platformexcept:raise ImportError("未找到模块 platform")# 判断系统位数是否为64位,如果不是则抛出异常if platform.architecture()[0] != '64bit':raise Exception("System is not 64-bit.")if isinstance(db_paths, dict):db_paths = [db_paths]merge_path = os.path.abspath(merge_path)  # 合并后的数据库路径,必须为绝对路径merge_path_base = os.path.dirname(merge_path)  # 合并后的数据库路径if not os.path.exists(merge_path_base):os.makedirs(merge_path_base)endbs = []for db_info in db_paths:db_path = os.path.abspath(db_info['db_path'])if not os.path.exists(db_path):# raise FileNotFoundError("数据库不存在")continueendbs.append(os.path.abspath(db_path))endbs = '" "'.join(list(set(endbs)))if not os.path.exists(real_time_exe_path if real_time_exe_path else ""):current_path = os.path.dirname(__file__)  # 获取当前文件夹路径real_time_exe_path = os.path.join(current_path, "tools", "realTime.exe")if not os.path.exists(real_time_exe_path):raise FileNotFoundError("未找到实时数据库合并工具")real_time_exe_path = os.path.abspath(real_time_exe_path)# 调用cmd命令cmd = f'{real_time_exe_path} "{key}" "{merge_path}" "{endbs}"'# os.system(cmd)# wx_core_loger.info(f"合并实时数据库命令:{cmd}")p = subprocess.Popen(cmd, shell=False, stdout=subprocess.PIPE, stderr=subprocess.PIPE, cwd=merge_path_base,creationflags=subprocess.CREATE_NO_WINDOW)out, err = p.communicate()  # 查看返回值if out and out.decode("utf-8").find("SUCCESS") >= 0:wx_core_loger.info(f"合并实时数据库成功{out}")return True, merge_pathelse:wx_core_loger.error(f"合并实时数据库失败\n{out}\n{err}")return False, (out, err)@wx_core_error
def all_merge_real_time_db(key, wx_path, merge_path: str, real_time_exe_path: str = None):"""合并所有实时数据库注:这是全量合并,会有可能产生重复数据,需要自行去重:param key:  解密密钥:param wx_path:  微信文件夹路径 eg:C:\*****\WeChat Files\wxid*******:param merge_path:  合并后的数据库路径 eg: C:\\*******\\WeChat Files\\wxid_*********\\merge.db:param real_time_exe_path:  实时数据库合并工具路径:return:"""if not merge_path or not key or not wx_path or not wx_path:return False, "msg_path or media_path or wx_path or key is required"try:from wxdump import get_core_dbexcept ImportError:return False, "未找到模块 wxdump"db_paths = get_core_db(wx_path, CORE_DB_TYPE)if not db_paths[0]:return False, db_paths[1]db_paths = db_paths[1]code, ret = merge_real_time_db(key=key, merge_path=merge_path, db_paths=db_paths,real_time_exe_path=real_time_exe_path)if code:return True, merge_pathelse:return False, ret

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/828922.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

ABC377

C link存一下那些点不能占,用总数减去即可,注意存的时候可以用一个\(map\),存过的就不要再存了。

新配置!米尔新唐MA35D1核心板512M DDR配置发布!

米尔在2024年8月推出了基于新唐MA35D1芯片设计的嵌入式处理器模块MYC-LMA35核心板及开发板。MA35D1是集成2个Cortex-A35与1个Cortex-M4的异构微处理器芯片。核心板采用创新LGA 252PIN设计,原生17路UART和4路CAN FD等丰富的通讯接口,可广泛应用于新能源充电桩、工程机械控制器…

将本地nuget包推送到Nexus

1.安装nuget.exe ,下载地址https://www.nuget.org/downloads,下载后直接将nuget.exe拷贝到C:\Windows\System32目录下2.cmd执行 nuget setapikey e500146f-8594-32a3-9041-6ad7d2bf8d9b -source http://192.168.10.22:8081/repository/nuget-hosted/ 为仓库设置apikey3.执行…

Python之字符类型

一、索引 索引在公司中一般也叫下标,或角标 定义:可我们可以直接使用索引来访问序列中的元素,同时索引可分为正向索引和负向索引两种,而切片也会用到索引,如下图:Python中有序列:字符,列表,元组 无序:集合 正向索引:从0开始 负向索引:-1开始 二、切片 定义:切片是…

Navicat:数据库备份

# Navicat # 数据库备份原创 OpsEye前文我们简单介绍了Navicat的功能和使用场景,本文我们将详细的讲解使用Navicat进行数据库备份和还原的相关操作。 Navicat工具下载 下载官网:https://www.navicat.com.cn/download/navicat-premium 根据实际系统情况,选择下载。我们这里是…

居然都到 7.x版本了!!!雷池 WAF 社区版 7.x 的体验记录

雷池 WAF 简介 雷池 WAF,英文名 “SafeLine”,由长亭科技出品的一款 Web 应用防火墙,可以保护 Web 服务不受黑客攻击,早年就以 ”智能语义分析技术“ 闻名于安全行业。 雷池社区版是长亭基于原有技术打造的一款开源 WAF,主打简单易用,我猜的不错的话长亭应该是想借这种产…

windows基础

windows基础 1、windows&linux 微软windows操作系统,俗称windows 文件系统 linux: fhs目录结构,块设备挂载到目录(一切都是文件) win: 以驱动器盘符起始,或通过目录挂载分区 路径格式 linux: /开始,区分大小写(左斜线) win: \分隔路径,不区分大小写(右斜线)…

Ubuntu网页打不开,或只能打开一部分

设置固定IP后,网关没设置或没设置对导致的。 查看连接的网络的网关,用已经连了该网络的windows系统电脑,cmd里输入ipconfig 将Ubuntu的该网络的网关设置下,重新开闭下就可以了。 桌面右上角——wifi设置——已连接的wifi后边的设置(下图) 断开再连接下

访问浪潮带外BMC界面的远程控制台重定向(KVM)无法访问,提示JViewer未签名,mac电脑安装JDK8

报错截图:安装JDK8 下载JDK1.8的安装包 Java Downloads | Oracle下载的安装包双击按提示流程安装:按照完成以后、我们可以查看JDK的安装路径、在资源库/Library下面会出现一个Java的文件夹、目录层级如下:/Library/Java/JavaVirtualMachines/jdk-1.8.jdk 打开终端窗口 按快捷…

Nginx反向代理之proxy_redirect指令【转】

proxy_redirect 该指令是用来重置头信息中的"Location"和"Refresh"的值。 语法:proxy_redirect redirect replacement; proxy_redirect default; proxy_redirect off;默认值: proxy_redirect default; 编写位置:它可以存储在http、server、location里面…

嵌入式采集网关(golang版本)

为了一次编写到处运行,使用纯GO编写,排除CGO,解决在嵌入式中交叉编译难问题硬件设备:移远EC200A-CN LTE Cat 4 无线通信模块,搭载openwrt操作系统,90M内存qq:505645074

tag

最近遇到的某些面试官我: