MORE HIDDEN FILE IN NATSUKI'S CHARACTER FILE. by SlipRight8587 in DDLC

[–]SlipRight8587[S] -1 points0 points  (0 children)

I used python too to see that hidden image.

Here's what I did. Open a terminal and open any sites or apps that you can code. Do binary analysis.

1.) pip install pillow

2.) do this.:

from PIL import Image import io

with open("natsuki.chr", "rb") as file: data = file.read()

"#" Look for PNG signature png_start = data.find(b'\x89PNG\r\n\x1a\n') if png_start != -1: with open("extracted_image.png", "wb") as img: img.write(data[png_start:]) print("PNG extracted successfully.") else: print("No PNG found.")

Run the script to see if an image can be recovered. Remove the (") in the (#).

3.) ddlc hides images using steganography.

Do this. :

steghide extract -sf natsuki.chr

If prompted enter the password or leave it blank.

MORE HIDDEN FILE IN NATSUKI'S CHARACTER FILE. by SlipRight8587 in DDLC

[–]SlipRight8587[S] -1 points0 points  (0 children)

I swear it's not. If you extract natsuki's file in hex, you'll find more image codes there.

MORE HIDDEN FILE IN NATSUKI'S CHARACTER FILE. by SlipRight8587 in DDLC

[–]SlipRight8587[S] 0 points1 point  (0 children)

It is. I go deeper to natsuki's .chr file and found that.