Forensics - HTB

This is all retired forensic challenges from hackthebox

Took the Byte

Challenge Description

Someone took my bytes! Can you recover my password for me?

We will get a file called password when we unzip the given file.

$ file password 
password: data
$ cat password 
(cы$j

U36U7(c7[~ы$j

I uploaded to CyberChef and analyse with XOR Bruteforce .

Now we can see keys is ff and this file must be zip file with password.txt inside of it.

Save the file as zip and unzip it. We will get the flag in password.txt file.

$ cat password.txt 
HTB{27AjFDkqi1wJ}

HTB{27AjFDkqi1wJ}

S3cr3t_R3c1p3

Challenge Description

This damn Meth-Cook encrypted his Recipe. But we found his RSA-Key. For some reason, it is not working. Can you help us?

We will get these two file when we unzip the downloaded file.

how_to_make_meth.txt and rsa_private.key

$ ls
 how_to_make_meth.txt   rsa_private.key

Comming Soon....

Last updated