Sign Up

使用ida打开,搜索主函数main,f5反编译
image

双击进入Check_Data();
image

分析代码我们需要对账号前七位-1,密码前四位-2
key_num和key_password分别存着账号密码,双击查看
image

写一个解密脚本

res = ""
for i in range(7):
    t = int(a[i]) - 1
    res += str(t)
res += a[7:]
for j in range(4):
    t = chr(ord(b[j]) - 2)
    res += t
print(res)

image

使用md5加密获得flag
image

posted @ 2026-03-15 14:47  大雪深埋  阅读(13)  评论(0)    收藏  举报
// 正常配置 window.cnblogsConfig = { links: {}, }; // 友链页配置 window.cnblogsConfig.links.page = [ { title: '友情链接', // 标题 icon: 'icon-lianjie', // iconfont style: 'color: #a78bfa;', links: [ { name: '2_haowen_V', // 昵称 introduction: 'IT技术类博客', // 简介 avatar: 'https://pic.cnblogs.com/face/1334215/20180504110551.png', // 头像 url: 'https://www.hehaowen.com.cn/' // 友链地址 }, ] }, ];