图片就是答案
ctfshow{22f1fb91fc4169f1c9411ce632a0ed8d}
打开就是png文件,更改一下后缀
跟着学了下pythyon图片提取
import pytesseract
from PIL import Image
# 使用绝对路径打开图片文件
img = Image.open('D:\\CTF\\题目\\NSSCTF\\misc2\\misc2.png')
# 使用pytesseract进行OCR识别
text = pytesseract.image_to_string(img)
print(text)
bpq文件
JPEG
文件头:FF D8 FF
文件尾:FF D9
TGA
未压缩的前4字节 00 00 02 00
RLE压缩的前5字节 00 00 10 00 00
PNG
文件头:89 50 4E 47 0D 0A 1A 0A
文件尾:AE 42 60 82
GIF
文件头:47 49 46 38 39(37) 61
文件尾:00 3B
BMP
文件头:42 4D
文件头标识(2 bytes) 42(B) 4D(M)
TIFF (tif)
文件头:49 49 2A 00
ico
文件头:00 00 01 00
Adobe Photoshop (psd)
文件头:38 42 50 53
根据这个修改文件头就是