-
-
Save synap5e/27635d2ff6f0e3b15f0c902dca2974a9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
orig = open('volskaya-screenshot-004.jpg', 'rb') | |
new = open('5552E494-78B3-4CE9-ACF6-EF8208F913CF.jpg', 'rb') | |
replaced_bytes = '' | |
for o, n in zip(orig.read(), new.read()): | |
if o != n: | |
replaced_bytes += o | |
hint, skull = replaced_bytes.split('\n') | |
print(hint) | |
for i, c in enumerate(skull): | |
sys.stdout.write(c) | |
if not i % 59: | |
sys.stdout.write('\n') | |
sys.stdout.write('\n') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
python2 script to extract modified bytes from datamooshed volskaya screenshot