RE: RE: The Hive Crypto Challenge #1
You are viewing a single comment's thread from:

RE: The Hive Crypto Challenge #1

lefevre(42)
Published in
GEMS
Words
88
Reading
1 min
Listen
Play
6y

Hint Nr.1
@timsaid/timtravels-a-different-kind-of-tree-hint-nr-1 & s/ /D

https://www.dropbox.com/s/cbiikynpp2sigmr/DSC_8811

Pictures of Tree in Amsterdam Netherlands

uploaded by Lumpia

Morse from Image: Red herring
RAID4 NO PARITY

Hint Nr.2
https://pastebin.com/197gY7bE
contents of PB
EnCt2f5f470abbd1f510caa1eaecfd1efeb7b9bae72def5f470abbd1f510caa1eaecf5Tg4UK3=1wC i5L3tol7qS/bt1shr3CS/RQNZNt2xlvZ+O6Z2PFk8+Y/0IwEmS

password = cbiikynpp2sigmr

https://easyupload.io/6d5zo2

Rar file that you need to read each file one byte at a time to re-create jpg

Python Script:

file2 = open("F:/Crypto/Hive/file1", "rb")
file3 = open("F:/Crypto/Hive/file2", "rb")
text_file = open("F:/Crypto/Hive/Output.jpg", "wb")

with open("F:/Crypto/Hive/file0", "rb") as file1:
while True:
byte1 = file1.read(1)
byte2 = file2.read(1)
byte3 = file3.read(1)
text_file.write(byte1)
text_file.write(byte2)
text_file.write(byte3)
if not byte1:
break;

text_file.close()
print("Done")