新手一枚,如有错误(不足)请指正,谢谢!!
<mark>个人博客:点击进入</mark>
题目链接:BUUCTF-re-[V&N2020 公开赛]strangeCpp
main()函数没啥东西……
找好久…
putchar字节这里,中间夹杂着数据……
然后交叉引用,来到这里
其中sub_140011384()函数,将dword_140021190操作得到result
然后result要等于607052314,dword_140021190要小于等于14549743
缩小爆破范围……
写脚本
#include <stdio.h>
int main()
{
unsigned char data[17] = {
0x26, 0x2C, 0x21, 0x27, 0x3B, 0x0D, 0x04, 0x75, 0x68, 0x34, 0x28, 0x25, 0x0E, 0x35, 0x2D, 0x69,
0x3D
};
int i,m,result = 607052314;
int n=0;
for (n = 0; n <= 14549743; n++)
{
m= (n << 8) ^ (n >> 12);
if (m*291 == result)
{
printf("%d\n", n);
break;
}
}
for (i = 0; i < 17; i++)
putchar(data[i] ^ char(n));
return 0;
}
使用python进行md5加密
得到最终flag为flag{e10adc3949ba59abbe56e057f20f883e}