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
CVE-2022-44268-fixed-PoC — Python PoC for CVE-2022-44268 that embeds arbitrary file contents into PNG images via ImageMagick, with extraction support for exiftool. | Kitploit
Tools/GitHubGitHub/cygnusx-26/cve-2022-44268-fixed-poc
Payload GenerationVulnerability AnalysisExploitationWeb Security
GitHubcygnusx-26/cve-2022-44268-fixed-poc

CVE-2022-44268-fixed-PoC

Python PoC for CVE-2022-44268 that embeds arbitrary file contents into PNG images via ImageMagick, with extraction support for exiftool.

View Repository

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
2 years agoNot yet reviewed
Share

Fixed version of CVE-2022-44268

Some PoCs don't work for specific file contents. This PoC may work for contents that don't work with other PoCs.

Installation

Git clone this repo. Then, install the requirements.

root@kitploit:~
pip install -r requirements.txt

Usage

To embed your payload within an image:

root@kitploit:~
python3 MagickPNG.py -i <image to modify> -f <file to read> -o <output file>

Then use ImageMagick to update your PNG.

To extract data from the ImageMagick modified file:

root@kitploit:~
python3 MagickPNG.py -d <resulting image> -o <output file>

If this doesnt work, try using exiftool to extract the bytes as hex.

root@kitploit:~
exiftool -all:all -s image.png -b

original poc:

here

Download Tool