diff --git a/TJCTF 2023/nothing-to-see/README.md b/TJCTF 2023/nothing-to-see/README.md new file mode 100644 index 0000000..7eb30e0 --- /dev/null +++ b/TJCTF 2023/nothing-to-see/README.md @@ -0,0 +1,32 @@ +# nothing-to-see +> nothing to see here, just move along + +## About the Challenge + +We have given a image like this and we need find the flag from the given image + +![nothing](images/nothing.png) + +## How to Solve + +Fist you need do `exiftool` on this image, and you'll find interesting information + +![exiftool](images/exiftool.jpg) + +You'll see the Title is `panda_d02b3ab3`, it will be use after this + +After that you can perform `foremost` to see if there any extracted file + +![foremost](images/foremost.jpg) + +You'll find the zip file which is locked, the password is use from what we've got from exiftool + +![zip](images/zip.jpg) + +And we got flag + +![flag](images/flag.jpg) + +``` +tjctf{the_end_is_not_the_end_4c261b91} +``` \ No newline at end of file diff --git a/TJCTF 2023/nothing-to-see/images/exiftool.jpg b/TJCTF 2023/nothing-to-see/images/exiftool.jpg new file mode 100644 index 0000000..44f076c Binary files /dev/null and b/TJCTF 2023/nothing-to-see/images/exiftool.jpg differ diff --git a/TJCTF 2023/nothing-to-see/images/flag.jpg b/TJCTF 2023/nothing-to-see/images/flag.jpg new file mode 100644 index 0000000..e9bc8d0 Binary files /dev/null and b/TJCTF 2023/nothing-to-see/images/flag.jpg differ diff --git a/TJCTF 2023/nothing-to-see/images/foremost.jpg b/TJCTF 2023/nothing-to-see/images/foremost.jpg new file mode 100644 index 0000000..1362962 Binary files /dev/null and b/TJCTF 2023/nothing-to-see/images/foremost.jpg differ diff --git a/TJCTF 2023/nothing-to-see/images/nothing.png b/TJCTF 2023/nothing-to-see/images/nothing.png new file mode 100644 index 0000000..ead8a12 Binary files /dev/null and b/TJCTF 2023/nothing-to-see/images/nothing.png differ diff --git a/TJCTF 2023/nothing-to-see/images/zip.jpg b/TJCTF 2023/nothing-to-see/images/zip.jpg new file mode 100644 index 0000000..5cf91bc Binary files /dev/null and b/TJCTF 2023/nothing-to-see/images/zip.jpg differ