V2VsbCBkb25lIQoKIEZsYWc6IElTQ0N7TjBfMG5lX2Nhbl9zdDBwX3kwdX0K
Flag: ISCC{N0_0ne_can_st0p_y0u}
签到题
八进制转ASCll,ascll算出来拿去base64解码
#!-*-coding:utf-8 -*-
import binascii
file_path='message.txt'
strs=[]
with open(file_path) as file_object:
# print file_object
for line in file_object:
strs.append(line.rstrip())
#print strs
a=[]
for i in strs:
#a.append(binascii.a2b_hex(hex(int(i,8))[2:]))
print binascii.a2b_hex(hex(int(i,8))[2:])
s='V2VsbCBkb25lIQoKIEZsYWc6IElTQ0N7TjBfMG5lX2Nhbl9zdDBwX3kwdX0K'
import base64
print base64.b64decode(s)