1.前言
2.破解思路分析
nacl.secret.SecretBox(key).decrypted
进行解密。流程大概如下:2.1遍历文件
def list_all_files(path):
for root, dirs, files in os.walk(path):
for name in files:
file_path = os.path.join(root, name)
if file_path.endswith('.lol'):
try:
decrypt_file(file_path)
except PermissionError:
print(f"Permission denied: {file_path}")
2.2解密操作
#密钥初始化
key = b'xc0nxf7xd3x95x90w7x06xddxc2Ax8dxaewxcd[xdbxc9Rxf0xfbLE8xf0xf7xd5xcexedxd6xfa' # 替换为实际的密钥
box = nacl.secret.SecretBox(key)
#解密函数
def decrypt_file(encrypted_file_path):
file_del = encrypted_file_path
with open(encrypted_file_path, 'rb') as f:
encrypted_data = f.read()
decrypted = box.decrypt(encrypted_data)
# 保存解密后的文件
decrypted_file_path = encrypted_file_path.replace('.lol', '')
with open(decrypted_file_path, 'wb') as f:
f.write(decrypted)
os.remove(file_del)
print(f'File decrypted successfully: {decrypted_file_path}')
3.使用教程
3.1工具简介
Software\Microsoft\Windows\CurrentVersion\Run\MyScript
3.2使用方法
请以管理员权限运行命令提示符(CMD)。目前,该工具仅支持选择目录进行恢复,无法指定单个文件进行解密。
lol解密器.exe 文件路径(只能是目录路径)例如C:UsersDownloads
lol解密器.exe C:UsersDownloads #回车后恢复C:UsersDownloads所有.lol后缀文件
工具下载地址
点击关注下方名片进入公众号
回复关键字【lol】获取下载链接
或直接访问solar官网——解密工具
https://www.solarsecurity.cn/
更多资讯 扫码加入群组交流
喜欢此内容的人还喜欢
索勒安全团队
索勒安全团队
索勒安全团队
推荐站内搜索:最好用的开发软件、免费开源系统、渗透测试工具云盘下载、最新渗透测试资料、最新黑客工具下载……
还没有评论,来说两句吧...