Depix

Depix 是一种从像素化截图中恢复明文的技术的 PoC。「Depix is a PoC for a technique to recover plaintext from pixelized screenshots.」

Github星跟蹤圖

Depix

Depix is a PoC for a technique to recover plaintext from pixelized screenshots.

This implementation works on pixelized images that were created with a linear box filter.
In this article I cover background information on pixelization and similar research.

Example

image

Updates

  • 27 nov '23: Refactored and removed all this pip stuff. I like scripts I can just run. If a package can't be found, just install it. Also added tool_show_boxes.py to show how bad the box detector is (you have to really cut out the pixels exactly). Made a TODO to create a version that just cuts out boxes of static size.

Installation

  • Install the dependencies
  • Run Depix:
python3 depix.py \
    -p /path/to/your/input/image.png \
    -s images/searchimages/debruinseq_notepad_Windows10_closeAndSpaced.png \
    -o /path/to/your/output.png

Example usage

  • Depixelize example image created with Notepad and pixelized with Greenshot. Greenshot averages by averaging the gamma-encoded 0-255 values, which is Depix's default mode.
python3 depix.py \
    -p images/testimages/testimage3_pixels.png \
    -s images/searchimages/debruinseq_notepad_Windows10_closeAndSpaced.png

Result: image

  • Depixelize example image created with Sublime and pixelized with Gimp, where averaging is done in linear sRGB. The backgroundcolor option filters out the background color of the editor.
python3 depix.py \
    -p images/testimages/sublime_screenshot_pixels_gimp.png \
    -s images/searchimages/debruin_sublime_Linux_small.png \
    --backgroundcolor 40,41,35 \
    --averagetype linear

Result: image

  • (Optional) You can view if the box detector thingie finds your pixels with tool_show_boxes.py. Consider a smaller batch of pixels if this looks all mangled. Example of good looking boxes:
python3 tool_show_boxes.py \ 
    -p images/testimages/testimage3_pixels.png \
    -s images/searchimages/debruinseq_notepad_Windows10_closeAndSpaced.png
  • (Optional) You can create pixelized image by using tool_gen_pixelated.py.
python3 tool_gen_pixelated.py -i /path/to/image.png -o pixed_output.png
  • For a detailed explanation, please try to run $ python3 depix.py -h and tool_gen_pixelated.py.

About

Making a Search Image

  • Cut out the pixelated blocks from the screenshot as a single rectangle.
  • Paste a De Bruijn sequence with expected characters in an editor with the same font settings as your input image (Same text size, similar font, same colors).
  • Make a screenshot of the sequence.
  • Move that screenshot into a folder like images/searchimages/.
  • Run Depix with the -s flag set to the location of this screenshot.

Making a Pixelized Image

  • Cut out the pixelized blocks exactly. See the testimages for examples.
  • It tries to detect blocks but it doesn't do an amazing job. Play with the tool_show_boxes.py script and different cutouts if your blocks aren't properly detected.

Algorithm

The algorithm uses the fact that the linear box filter processes every block separately. For every block it pixelizes all blocks in the search image to check for direct matches.

For some pixelized images Depix manages to find single-match results. It assumes these are correct. The matches of surrounding multi-match blocks are then compared to be geometrically at the same distance as in the pixelized image. Matches are also treated as correct. This process is repeated a couple of times.

After correct blocks have no more geometrical matches, it will output all correct blocks directly. For multi-match blocks, it outputs the average of all matches.

Known limitations

  • The algorithm matches by integer block-boundaries. As a result, it has the underlying assumption that for all characters rendered (both in the de Brujin sequence and the pixelated image), the text positioning is done at pixel level. However, some modern text rasterizers position text at sub-pixel accuracies.
  • You need to know the font specifications and in some cases the screen settings with which the screenshot was taken. However, if there is enough plaintext in the original image you might be able to use the original as a search image.
  • This approach doesn't work if additional image compression is performed, because it messes up the colors of a block.

Future development

  • Implement more filter functions

Create more averaging filters that work like some popular editors do.

  • Create a new tool that utilizes HMMs

After creating this program, someone pointed me to a research document from 2016 where a group of researchers managed to create a similar tool. Their tool has better precision and works across many different fonts.
While their original source code is not public, an open-source implementation exists at DepixHMM.

Edit 16 Feb '22: Dan Petro created the tool UnRedacter (write-up, source) to crack a challenge that was created as a response to Depix!

Still, anyone who is passionate about this type of depixelization is encouraged to implement their own HMM-based version and share it.

概覽

名稱與所有者spipm/Depix
主編程語言Python
編程語言Python (語言數: 1)
平台Linux, Mac, Windows
許可證Other
發布數0
創建於2020-12-06 12:39:08
推送於2024-01-31 16:11:00
最后一次提交
星數25.1k
關注者數398
派生數3.1k
提交數59
已啟用問題?
問題數0
打開的問題數0
拉請求數14
打開的拉請求數1
關閉的拉請求數16
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?
去到頂部