├── README.md ├── start.py └── zhangdama ├── README.md ├── decrypt.py ├── geetest.py ├── img_locate.py ├── rea_handle.py ├── requirements.txt ├── result.png ├── run.py ├── start.py ├── t_dict.pkl └── trace_.py /README.md: -------------------------------------------------------------------------------- 1 | # smzdm 2 | 什么值得买模拟登陆,签到,非selenium 3 | 4 | 1) 使用了 https://github.com/Kevin-Cherish/geetest 的极验破解代码 5 | 2) 抓包获取 RSA的公钥破解 6 | 3) 在 start.py 输入自己的用户名和密码就可以登陆。 7 | -------------------------------------------------------------------------------- /start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaodi962464/smzdm/HEAD/start.py -------------------------------------------------------------------------------- /zhangdama/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaodi962464/smzdm/HEAD/zhangdama/README.md -------------------------------------------------------------------------------- /zhangdama/decrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaodi962464/smzdm/HEAD/zhangdama/decrypt.py -------------------------------------------------------------------------------- /zhangdama/geetest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaodi962464/smzdm/HEAD/zhangdama/geetest.py -------------------------------------------------------------------------------- /zhangdama/img_locate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaodi962464/smzdm/HEAD/zhangdama/img_locate.py -------------------------------------------------------------------------------- /zhangdama/rea_handle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaodi962464/smzdm/HEAD/zhangdama/rea_handle.py -------------------------------------------------------------------------------- /zhangdama/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaodi962464/smzdm/HEAD/zhangdama/requirements.txt -------------------------------------------------------------------------------- /zhangdama/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaodi962464/smzdm/HEAD/zhangdama/result.png -------------------------------------------------------------------------------- /zhangdama/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaodi962464/smzdm/HEAD/zhangdama/run.py -------------------------------------------------------------------------------- /zhangdama/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaodi962464/smzdm/HEAD/zhangdama/start.py -------------------------------------------------------------------------------- /zhangdama/t_dict.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaodi962464/smzdm/HEAD/zhangdama/t_dict.pkl -------------------------------------------------------------------------------- /zhangdama/trace_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaodi962464/smzdm/HEAD/zhangdama/trace_.py --------------------------------------------------------------------------------