做CTF题好长一段时间了,真的可以学到很多东西.这次,我们开启 net-force.nl 的 Steganography之旅,所谓的隐写术. level 801: Training - Can you see me? 点开上面的链接可以查看题目.字的颜色以背景颜色书写,惯用的雕虫小技,Ctrl + A 就能现形,或者查看网页代码,答案显而易见. <span style="color: white"> Look at the file password.gif and you…
两种方式Range和ROI #include <opencv2/opencv.hpp> using namespace std; using namespace cv; void testrange(Mat &img) { int m = img.rows; int n = img.cols; Mat temp = img(Range(,m*,n*0.8)); namedWindow("Range"); imshow("Range", temp)…