加加减减

放入die里面分析,发现是32位的,使用ida打开
image

在函数部分搜索main,选择main_0,f5反编译
image

分析代码
主要加密逻辑就是每个字符的ascll都减1

写一个解密脚本

encrypted = "ek`fz5123086/ce7ac7/`4a81`6/87b`b28a5|"
flag = ''.join([chr(ord(c) + 1) for c in encrypted])
print(flag)

image

posted @ 2026-03-14 15:44  大雪深埋  阅读(12)  评论(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/' // 友链地址 }, ] }, ];