【笔记】SunflowerGetPassword学习笔记

前言

一款针对向日葵的识别码和验证码提取工具(Github

下载项目

1
2
git clone https://github.com/wafinfo/Sunflower_get_Password.git
cd Sunflower_get_Password

下载依赖

1
2
3
4
python3 -m venv venv
source venv/bin/activate
pip3 install unicorn
pip3 install setuptools

解密向日葵密码

1
python3 SunDecrypt.py

<password>::需要解密的向日葵密码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18


向日葵encry_pwd(本机验证码),fastcode(本机识别码)提取

--WAF

向日葵默认配置文件路径:
安装版:C:\Program Files\Oray\SunLogin\SunloginClient\config.ini
便携版:C:\ProgramData\Oray\SunloginClient\config.ini
本机验证码参数:encry_pwd
本机识别码参数:fastcode(去掉开头字母)
sunlogincode:判断用户是否登录状态

请判断config.ini配置文件中是否存在sunlogincode参数,存在为登录状态否则未登录

请输入需要解密的密码:<password>
请输入sunlogincode值(没有就按回车键):
解密成功: xxxxxx

完成

参考文献

CSDN——好名字可以让你的朋友更容易记住你427