2025年网络与分布式系统创新设计大赛校赛 WP
***杂项***我一题没写出来,我是飞舞
[MISC]vivo50
不让爆破密码了,打开压缩包,发现里面有一个叫vivome5000.zip的压缩包,字节还算小,CRC爆破还是bkcrack?
1.先用bkcrack看下,是否支持爆破
1bkcrack.exe -L crackme.zip
发现加密方式是ZipCrypto且是Store,OK满足爆破条件
但是工具要求必须已知12个字节(且其中8个字节必须是连续的)才能爆破,只有压缩包的头肯定是不够12个字节进行爆破的,所以进行拼接爆破
但是用什么拼接呢?提示给说文本压缩成ZIP时,并没有特地去设置ZIP的文件名,翻译成人话就是,藏有flag的txt文件就是vivome5000.txt,那么就知道很多字节了,开干
2.先自己创建一个vivo5000.txt,打成压缩包,扔进010看看
那么我们现在就有以下字节是知道的:压缩包的头504B0304,vivome5000.txt这个文件对应字节。
3.进行爆破:
1bkcrack.exe -C crackme.zip -c ...
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick StartCreate a new post1$ hexo new "My New Post"
More info: Writing
Run server1$ hexo server
More info: Server
Generate static files1$ hexo generate
More info: Generating
Deploy to remote sites1$ hexo deploy
More info: Deployment