Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
dejavu — Challenge based on CVE-2021-22204 where users send a malicious file to a web application to gain RCE | Kitploit
Tools/GitHubGitHub/battleofthebots/dejavu
Vulnerability AnalysisExploitationWeb Application ExploitationCTFLearning & EducationLabs & Practice
GitHubbattleofthebots/dejavu

dejavu

Challenge based on CVE-2021-22204 where users send a malicious file to a web application to gain RCE

View Repository
2 years agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

DejaVu

This container runs a web application that analyzes images and returns their metadata using exiftool. Users send the application a URL to an image and the app will retrieve it, analyze it, and return the results. The version of exiftool used by the application is vulnerable to CVE-2021-22204 as the DjVu file module has an unsafe eval which can be triggered with a specially crafted file to execute arbitrary commands. Competitors must use their bot to host a malicious "image" (as a png/jpeg/tiff), then tell the app to request their malicious image and evaluate it resulting in their payload executing.

Building

root@kitploit:~
docker build . -t dejavu

Running

root@kitploit:~
docker run --cpus=1 -p 8000:80 dejavu

Exploiting

root@kitploit:~
python3 dejavu.py <container addr> <lhost address> --lhost <lhost address>

NOTE It is very unstable

NOTE The requirements.txt is only for the same python running on the base image. If on a different system or python version, just manually install the python packages.

References

  • a-case-study-on-cve-2021-22204-exiftool-rce
Download Tool