首页
社区
课程
招聘
ctf2018-第13题
发表于: 2018-7-11 19:41 2770

ctf2018-第13题

2018-7-11 19:41
2770

sn长度为10

.text:00000000004039C7                 cmp     rdx, 0Ah
.text:00000000004039CB                 jz      short loc_403A0B

.text:00000000004039C7                 cmp     rdx, 0Ah
.text:00000000004039CB                 jz      short loc_403A0B

hex2bin, 必须是大写的16进制
.text:0000000000403A0B                 lea     rdx, [rsp+1B8h+a2] ; a2
.text:0000000000403A10                 mov     r8d, 0Ah        ; a3
.text:0000000000403A16                 mov     rcx, rsi        ; a1
.text:0000000000403A19                 call    hex2bin
.text:0000000000403A1E                 cmp     eax, 5

.text:0000000000403A0B                 lea     rdx, [rsp+1B8h+a2] ; a2
.text:0000000000403A10                 mov     r8d, 0Ah        ; a3
.text:0000000000403A16                 mov     rcx, rsi        ; a1
.text:0000000000403A19                 call    hex2bin
.text:0000000000403A1E                 cmp     eax, 5

x = ((snHex[1] << 8) | snHex[0]) << 48;
y = ((snHex[4] << 16) | (snHex[3] << 8) | snHex[2]) << 40;
in: (x,y)
out: r
.text:0000000000403A97                 call    x_4015E0 

.text:0000000000403A97                 call    x_4015E0 

sprintf(buf, "%lf", r);
buf[1]=='.';
sqrt(int(buf[0])^2+int(buf[2])^2+int(buf[3])^2) > 15.5

[培训]内核驱动高级班,冲击BAT一流互联网大厂工作,每周日13:00-18:00直播授课

最后于 2018-7-11 21:24 被风间仁编辑 ,原因:
收藏
免费 1
支持
分享
最新回复 (0)
游客
登录 | 注册 方可回帖
返回
//