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)

最新文章

  1. Chapter 5: Design and implement security
  2. javascript - DOM对象控制HTML元素详解
  3. HDU3874 /HDU3333 树状数组 区间求不重复数和
  4. mysql相关问题
  5. SVN中文件属性
  6. Win XP 如何禁用系统的自动更新
  7. 正则表达式JSP实例
  8. oracle修改闪回日志的位置
  9. svn自动备份
  10. git提交步骤
  11. elasticsearch 操作
  12. Groovy语言学习--语法基础(5)
  13. JS高级 - 面向对象5(继承,引用)
  14. Expo大作战(二十七)--expo sdk api之Util(expo自带工具类),tackSnapshotAsync,Svg,SQLite
  15. session的取代者:Json Web Tokens----在客户端存储登陆状态
  16. (原创)舌尖上的c++--相逢
  17. xhost + 的作用
  18. 笨办法学Python - 习题3: Numbers and Math
  19. 利用cocoapods创建基于git的私有库Spec Repo
  20. 在Eclipse中使用Struts和Hibernate框架搭建Maven Web项目

热门文章

  1. matlab学习笔记10_5 通用字符串操作和比较函数
  2. django项目模型字段
  3. LODOP打印维护适应不同的客户端
  4. [LeetCode] 52. N-Queens II N皇后问题 II
  5. harbor镜像仓库-https访问配置
  6. NLP理解层次 --- 思维导图
  7. RDP Error: The Identity Of The Remote Computer Cannot Be Verified
  8. 引用js文件中的函数调用
  9. 【HC89S003F4开发板】 10汇编指令
  10. JSON parse error: Can not deserialize instance of java.lang.String out of START_OBJECT token; nested exception is com.fasterxml.jackson.databind.JsonMappingException: Can not deserialize instance of j