I was sent this picture by an unknown individual, and after putting it through a hex editor, I found nothing out of the ordinary hidden inside. A message came with the image saying, "Can You Read Me?" Could you help me figure out what the hidden message says?? I can't figure out another way to read the image! Maybe Python's Pillow library can help you out? https://mega.nz/#!XewWgaaR!oXBHx7ZrmiKeRZy2OEfxTrrWcw511KCokzjNlBWV0Ao
I have used stegsolve and extracted the png also but no result . Kindly help
Read the hint: Maybe Python's Pillow library can help you out?
from PIL import Image
What do I need to compute in the code?
Read the RGB of pixel inside of image, then replace it into list. Remove duplicated RGB also
When I removed duplicate pixels from a [list of [list of tuples] . and combined those pixels to make an image , it just showed me a vertical line of combined colors.
No, you don't have to convert it again into image, just read the ASCII number. After you got it, convert again from ASCII into Text.
Thankyou bro for the hints..solved it finally in two days
Your welcome :D
I have used stegsolve and extracted the png also but no result . Kindly help
Read the hint: Maybe Python's Pillow library can help you out?
from PIL import Image
What do I need to compute in the code?
Read the RGB of pixel inside of image, then replace it into list. Remove duplicated RGB also
When I removed duplicate pixels from a [list of [list of tuples] . and combined those pixels to make an image , it just showed me a vertical line of combined colors.
No, you don't have to convert it again into image, just read the ASCII number. After you got it, convert again from ASCII into Text.
Thankyou bro for the hints..solved it finally in two days
Your welcome :D
9 months ago
Hint: Think in bigger squares, not pixels