ICode9

精准搜索请尝试: 精确搜索
  • BUUCTF-pyre2022-01-22 22:00:29

    下载附件是一个.pyc文件,在pyc在线反编译工具里反编译一下,代码如下: ` print "Welcome to Re World!"print "Your input1 is your flag~"l = len(input1)for i in range(l):  num = ((input1[i] + i) % 128 + 128) % 128  code += numfor i in range(l - 1):  code[i] = code

  • [GWCTF 2019]pyre 12021-01-16 19:33:43

    py文件,随便在网上搜个反编译器,看看源码 看下就是很简单的俩轮加密,反着写过去就行了. 贴上别人的脚本… print(‘Welcome to Re World!’) print(‘Your input1 is your flag~’) code = [0x1f,0x12,0x1d, 0x28,0x30,0x34, 0x01,0x06,0x14, 0x34, 0x2c, 0x1b, 0x55,0x3f,0

  • BUUCTF-RE-pyre2020-05-04 21:57:10

    初步探索 .pyc文件 通过在线 反编译后 print 'Welcome to Re World!' print 'Your input1 is your flag~' l = len(input1) for i in range(l): num = ((input1[i] + i) % 128 + 128) % 128 code += num for i in range(l - 1): code[i] = code[i] ^ code

  • BUUCTF-RE-pyre2020-04-04 15:54:40

    pyc反编译之后 print 'Welcome to Re World!' print 'Your input1 is your flag~' l = len(input1) for i in range(l): num = ((input1[i] + i) % 128 + 128) % 128 code += num for i in range(l - 1): code[i] = code[i] ^ code[i + 1] prin

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有