我是靠谱客的博主 帅气招牌,最近开发中收集的这篇文章主要介绍攻防世界 Misc高手进阶区 4分题 red_green前言结语,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

前言

继续ctf的旅程
攻防世界Misc高手进阶区的4分题
本篇是red_green的writeup

发现攻防世界的题目分数是动态的
就仅以做题时的分数为准了

解题过程

得到一张png

在这里插入图片描述
扔进stegsolve
调整通道
发现点东西

在这里插入图片描述
保存下来

在这里插入图片描述

得到flag

官方wp给出脚本

from PIL import Image
import os
import bitstring

image_name = 'flag.jpg'
current_path = os.path.dirname(__file__)
with open(os.path.join(current_path,image_name),'rb') as f:
    bin_content = bitstring.Bits(f)
    im = Image.new("RGB",(1024,780),(255,0,0))
    pim = im.load()
    for i,val in enumerate(bin_content.bin):
        if val == '0':
            pim[i%1024,i/1024] = (0,255,0)
    im.save(os.path.join(current_path,'red_green.png'))
from PIL import Image
import os
import bitstring

image_name = 'red_green.png'
current_path = os.path.dirname(__file__)
im = Image.open(os.path.join(current_path,image_name))
image_width = im.size[0]
image_height = im.size[1]
# load pixel
pim = im.load()
bin_result = ''
for row in range(image_height):
    for col in range(image_width):
        if pim[col,row][0] == 255:
            bin_result += '1'
        else:
            bin_result += '0'
with open(os.path.join(current_path,'result.jpg'),'wb') as f:
    f.write(bitstring.BitArray(bin=bin_result).bytes)

结语

没什么多的好讲

最后

以上就是帅气招牌为你收集整理的攻防世界 Misc高手进阶区 4分题 red_green前言结语的全部内容,希望文章能够帮你解决攻防世界 Misc高手进阶区 4分题 red_green前言结语所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(36)

评论列表共有 0 条评论

立即
投稿
返回
顶部