首页 > 其他 > 详细

buu刷题7.16

时间:2021-07-17 10:57:11      阅读:16      评论:0      收藏:0      [点我收藏+]

[SUCTF2018]followme

直接过滤ip contains "SUCTF"

技术分享图片

得到flag
SUCTF{password_is_not_weak}

[UTCTF2020]docx

打开doc文档,没有发现东西,改成zip解压,发现图片

得到flag

技术分享图片

[RCTF2019]draw

LOGO解释器

跑一下得到flag

技术分享图片

蜘蛛侠呀

技术分享图片

发现了一堆ICMP数据,导出
tshark -r out.pcap -T fields -e data >out1.txt

import binascii
lines=open("out1.txt",‘r‘).readlines()
file=open("out_file.txt",‘w‘)
key=0
for i in lines:
    if key % 4 ==0:
        file.write(binascii.a2b_hex(i.strip()).decode())
    key+=1
file.close()

将start头删掉,然后进行base64解码
技术分享图片

import binascii
import base64
lines=open("out_file.txt",‘r‘).readlines()
file=open("flag.zip","wb")
s=‘‘
for i in lines:
    s+=i
s=base64.b64decode(s)
file.write(s)
file.close()

弄成压缩包解压得到一张gif图片

技术分享图片

时间隐写,用identify -format "%T\n" flag.gif

技术分享图片

20
50
50
20
50
50
20
50
20
50
20
20
20
50
20
20
20
20
50
50
20
50
20
50
20
50
20
50
50
50
50
50
20
20
50
50
20
20
20
50
20
50
50
50
20
50
20
20
66
66

将20看成0,50看成1
011011010100010000110101010111110011000101110100

二进制转字符串得到flag
技术分享图片

mD5_1t
最后md5一下,得到flag

buu刷题7.16

原文:https://www.cnblogs.com/dawn-/p/15021672.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!