1717 shaares
871 private links
871 private links
6 results
tagged
reverse-engineering
The algorithm for de-pixelating a pixelated moving window with fixed content:
- extract the frames and find the absolute positions of the window for each frame
- assume the color of each pixelated cell is the color for the center pixel of each cell (think of pixelation as a magnifier filter focusing on the center pixel for each cell)
- by tracking the locations of the centered pixels and its colors in each frame, we fill in more and more pixels with known colors.
- for the remaining unfillled pixels, interpolate from nearest pixel of known colors (e.g. voronoi)
Techniques and tools for reverse engineering private/undocumented APIs for websites.
Bluetooth protocol snooping, Android app decompilation, AES decryption.
An article about tools and techniques used in wireless reverse-engineering.
Intuit what kind of data it is by looking at a blob of binary.
A nice demo of usage of Ghidra, a reverse engineering tool. The author find and modified game logic to make it possible to marry two people of the same gender.