【视频讲解】PicoCTF 2022 取证篇 svg图片隐藏信息
作者:FancyPig | 发布时间: | 更新时间:

相关阅读
在网络安全入门的探讨中,推荐了Pico ctf
data-postsbox="{"id":13208,"title":"2022年网络安全学习路线——如何入门、就业","author":"FancyPig","author_id":1,"cover_image":"","cover_video":"","views":9720,"comment_count":26,"category":"cybersecurity","is_forum_post":false}">{"id":13208,"title":"2022年网络安全学习路线——如何入门、就业","author":"FancyPig","author_id":1,"cover_image":"","cover_video":"","views":9720,"comment_count":26,"category":"cybersecurity","is_forum_post":false}
在上期视频中,我们分享了最简单的CTF题目,只需要会搜索引擎就可以查到CVE编号
data-postsbox="{"id":17859,"title":"【视频讲解】PicoCTF 2022 PrintNightmare CVE","author":"FancyPig","author_id":1,"cover_image":"","cover_video":"","views":1349,"comment_count":3,"category":"cybersecurity","is_forum_post":false}">{"id":17859,"title":"【视频讲解】PicoCTF 2022 PrintNightmare CVE","author":"FancyPig","author_id":1,"cover_image":"","cover_video":"","views":1349,"comment_count":3,"category":"cybersecurity","is_forum_post":false}
今天我们将为大家带来一道有关图片隐写术的题目,挖掘图片背后的秘密
更多阅读
data-postsbox="{"id":6891,"title":"想成为侦探?如何通过一张图片找到护照编号?教你玩转Maltego","author":"FancyPig","author_id":1,"cover_image":"","cover_video":"","views":11948,"comment_count":733,"category":"sg","is_forum_post":false}">{"id":6891,"title":"想成为侦探?如何通过一张图片找到护照编号?教你玩转Maltego","author":"FancyPig","author_id":1,"cover_image":"","cover_video":"","views":11948,"comment_count":733,"category":"sg","is_forum_post":false}
data-postsbox="{"id":6701,"title":"有趣的图片隐写术,如何发现图片中更多的秘密?结尾有一个奖励的小彩蛋,快来看!","author":"FancyPig","author_id":1,"cover_image":"","cover_video":"","views":4352,"comment_count":75,"category":"knowledge","is_forum_post":false}">{"id":6701,"title":"有趣的图片隐写术,如何发现图片中更多的秘密?结尾有一个奖励的小彩蛋,快来看!","author":"FancyPig","author_id":1,"cover_image":"","cover_video":"","views":4352,"comment_count":75,"category":"knowledge","is_forum_post":false}
data-postsbox="{"id":5677,"title":"图片定位远程查岗?别轻易用这些软件了!附一个自制工具","author":"FancyPig","author_id":1,"cover_image":"","cover_video":"","views":23616,"comment_count":25,"category":"sg","is_forum_post":false}">{"id":5677,"title":"图片定位远程查岗?别轻易用这些软件了!附一个自制工具","author":"FancyPig","author_id":1,"cover_image":"","cover_video":"","views":23616,"comment_count":25,"category":"sg","is_forum_post":false}
data-postsbox="{"id":3523,"title":"有趣的图片隐写技术 揭秘图片背后更多的秘密","author":"热心网友","author_id":9547,"cover_image":"","cover_video":"","views":4668,"comment_count":120,"category":"cybersecurity","is_forum_post":false}">{"id":3523,"title":"有趣的图片隐写技术 揭秘图片背后更多的秘密","author":"热心网友","author_id":9547,"cover_image":"","cover_video":"","views":4668,"comment_count":120,"category":"cybersecurity","is_forum_post":false}
data-postsbox="{"id":10390,"title":"豆瓣爆出截图中添加盲水印?如何验证是否存在盲水印?","author":"FancyPig","author_id":1,"cover_image":"","cover_video":"","views":4940,"comment_count":2,"category":"knowledge","is_forum_post":false}">{"id":10390,"title":"豆瓣爆出截图中添加盲水印?如何验证是否存在盲水印?","author":"FancyPig","author_id":1,"cover_image":"","cover_video":"","views":4940,"comment_count":2,"category":"knowledge","is_forum_post":false}
data-postsbox="{"id":1421,"title":"你知道一张图片,背后隐藏了多少信息?","author":"FancyPig","author_id":1,"cover_image":"https://static.pigsec.cn/wp-content/uploads/2021/08/20210812164735320.png","cover_video":"","views":27639,"comment_count":1959,"category":"sg","is_forum_post":false}">{"id":1421,"title":"你知道一张图片,背后隐藏了多少信息?","author":"FancyPig","author_id":1,"cover_image":"https://static.pigsec.cn/wp-content/uploads/2021/08/20210812164735320.png","cover_video":"","views":27639,"comment_count":1959,"category":"sg","is_forum_post":false}
视频讲解
File Carving科普
我们今天将给大家带来取证相关的内容,这里首先要说到一个单词就是File Carving,很多机器翻译都把这个Carving翻译成雕刻,文件雕刻是什么鬼?我们这里可以看到《File carving》文中给出的定义:
File carving is a process used in computer forensics to extract data from a disk drive or other storage device without the assistance of the file system that originality created the file.
我们可以理解为File carving其实就是提取文件信息,但是它是一个名词,因此翻译的时候就可以翻译成文件信息提取
视频介绍
本视频我们将带大家熟悉常见的文件取证工具,针对图片可以使用file、exiftools、bindwalk、strings、hexeditor等工具进行分析,同时我们还将教大家如何通过管道配合grep、cut、tr等命令完成对最终目标的提取。