Python教程

攻防世界_Re_新手区_python-trade

本文主要是介绍攻防世界_Re_新手区_python-trade,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

pyc文件,使用EasyPythonDecompiler反汇编

得到源码

# Embedded file name: 1.py
import base64

def encode(message):
    s = ''
    for i in message:
        x = ord(i) ^ 32
        x = x + 16
        s += chr(x)

    return base64.b64encode(s)


correct = 'XlNkVmtUI1MgXWBZXCFeKY+AaXNt'
flag = ''
print 'Input flag:'
flag = raw_input()
if encode(flag) == correct:
    print 'correct'
else:
    print 'wrong'

直接上脚本8

import base64
correct = 'XlNkVmtUI1MgXWBZXCFeKY+AaXNt'
x=base64.b64decode(correct)
for i in x:
  s=(int(i)-16)^32
  print(chr(s),end='')

flag
nctf{d3c0mpil1n9_PyC}

这篇关于攻防世界_Re_新手区_python-trade的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!