Anonymous ID: 23eddd July 29, 2018, 6:23 p.m. No.2346641   🗄️.is 🔗kun   >>6733 >>6781 >>6981

>>2306905

I was trying to find a test image so I can see if programs/code I'm trying to get working on my desktop is compatible. Your image doesn't work for me. Pixelknot is stuck on 10% "Fetching your message".

 

I made a test image with Pixelknot (pic related). The password is "test".

Anonymous ID: 23eddd July 29, 2018, 6:44 p.m. No.2346899   🗄️.is 🔗kun

>>2346733

I used GIMP to write the text onto an image I found online. I used Pixelknot from the Google Play store to create the test image (and wrote an embedded message).

Anonymous ID: 23eddd July 29, 2018, 7:32 p.m. No.2347556   🗄️.is 🔗kun   >>8153

>>2347264

The original SS image is 70KB, but Pixelknot wasn't used on the image because JFIF is present (the image has a sha256 beginning in "5a7f006").

 

As mentioned in this comment, Pixelknot does not have "JFIF" at the beginning of its output files:

>>2345784

 

The image I created with Pixelknot does not have the JFIF at the beginning. The image on..

>>2306905

does however. Maybe a mistake, maybe a slide, I dunno.

Anonymous ID: 23eddd July 29, 2018, 8:11 p.m. No.2348169   🗄️.is 🔗kun   >>6926

>>2347826

>Speaking of poorly written, is it possible that the developers made a mistake with the random seed generator? Using the same seed for each encryption.

 

There is no randomness for the seed. See method extractF5Seed(). The last 1/3 of the password string is used.

https://github.com/guardianproject/PixelKnot/blob/version_2/PixelKnot/src/main/java/info/guardianproject/pixelknot/StegoEncryptionJob.java

Anonymous ID: 23eddd July 29, 2018, 9:17 p.m. No.2349272   🗄️.is 🔗kun   >>9288

>>2349017

Nice find!

 

I wrote a script to scan all files in a directory and compare them to see if they have this signature.

 

[code]#!/bin/bash

 

PN_HASH_DESIRED_OUTPUT="3f3078870bf5ddc7c4d0e6e5941805b7a062c45d -"

 

for filename in .jp; do

FILE_HEADER_SHASUM_OUTPUT=$(head -c 100 $filename | shasum)

if [[ $FILE_HEADER_SHASUM_OUTPUT = $PN_HASH_DESIRED_OUTPUT ]]; then

echo "File $filename looks like it was made by Pixelknot."

fi;

done[code]

Anonymous ID: 23eddd July 30, 2018, 11:41 a.m. No.2357079   🗄️.is 🔗kun

>>2356344

If you drop the file extension, almost every one of these filenames look like base64 encoded data. The base64url variant uses "-" and "_" instead of "+" and "/".

 

https://en.wikipedia.org/wiki/Base64#URL_applications

 

https://www.base64decode.org/