Rating:

# IJCTF 2020 - adventure

## Description
>Three hidden keys open three secret gates
Wherein the errant will be tested for worthy traits
And those with the skill to survive these straits
Will reach The End where the prize awaits

Flag is in form IJCTF{copper key + jade key + crystal key}

Author: `Harsh`

**Hint**
* The first clue is hidden on the website ...
* File names and titles are useful

## Solution

All this challenge is a reference to the film Ready player one as we can see in the description of the challenge. We used this information to our advantage.

## Steganography
In the main page of the challenge we found a long HTML comment:

![image](https://raw.githubusercontent.com/Bonfee/CCIT20-writeups/master/IJCTF2020/adventure/comment.png)

Form this comment when we deleted spaces and new line and converted to ASCII:
>I created three keys. Three hidden challenges test for worthy traits revealing three hidden keys to three hidden gates. The keys aren't just laying around under a rock somewhere. I suppose you could say they're invisible, hidden in a dark room that's at the center of a maze that's located somewhere up here. Maybe you should take a closer look at our logo......................................................

So we started looking at the logo.

We found in the logo image at ijctf.ml some text.

![image](https://raw.githubusercontent.com/Bonfee/CCIT20-writeups/master/IJCTF2020/adventure/stego.png)

With the help of steghide we extracted a file:
```bash
steghide --extract -sf logo.jpg
```
content of the hidden File :
>https://pastebin.com/Ue2VUDjk
https://www.ijctf.ml/themes/core/static/img/QjMvUzIz.png
https://pastebin.com/dbQXYRvZ

Since the description of the challenge said that there were three parts of the key it was safe to assume every link was a different challenge.

## Copper key - Merkle–Hellman knapsack cryptosystem

### Description
M.H. is an asymmetric cryptosystem.
The public key is composed of n integer values, with n corresponding to the number of bits of the message

We define the n bits -> ![image](https://render.githubusercontent.com/render/math?math=b_{i}%20\forall%20i%20\in%20\{1,%20...,%20n\}%20,%20b_{i}%20\in%20\{0,%201\})
We define the knapsack -> ![image](https://render.githubusercontent.com/render/math?math=k_{i}%20\forall%20i%20\in%20\{1,%20...,%20n\}%20,%20k_{i}%20\in%20\Z)

cipher text = ![image](https://render.githubusercontent.com/render/math?math=\sum_{i=1}^{n}%20k_{i}%20*%20b_{i})

The private key is a superincreasing knapsack, with a multiplier and a modulus used to transform the private key in into public key.
Anyway, we don't need the private key to solve this one

We had a file containing many knapsacks of public key and the ciphertext encoded.
Every knapsack was a list of 16 integers.

### Solution
Simply trying every possible combination was an 2^16 iterations problem, so quite an easy one.

[Some code](https://github.com/Bonfee/CCIT20-writeups/blob/master/IJCTF2020/adventure/copper_key/expl.py)

That was it.
```
kn4ps4ck_brut3_f0rrc3_f0rrc3
```

## Jade key - Game of life

### Description

![image](https://raw.githubusercontent.com/Bonfee/CCIT20-writeups/master/IJCTF2020/adventure/jade_key/QjMvUzIz.png)

The filename of the image was base64 encoded:
```bash
$ ls | cut -d '.' -f1 | base64 -d
B3/S23
```
B3/S23 stands for a set of rules for the [game of life](https://en.wikipedia.org/wiki/Life-like_cellular_automaton).

We used [golly](http://golly.sourceforge.net/) to import the png file after editing the colour map with GIMP.

Running golly gave us the flag:
![](https://github.com/Bonfee/CCIT20-writeups/raw/master/IJCTF2020/adventure/jade_key/golly.gif)

```
u1t1m4t3_g4m3_0f_l1f3
```

## Crystal key - Fourier series

### Description

The name of the file redirected us to a [YouTube video](https://youtu.be/r6sGWTCMz2k) about drawing with the Fourier series.

The file contained a malformed Fourier series.
After formatting the series and added the time variable that was missing we plotted it with a [numpy](https://github.com/Bonfee/CCIT20-writeups/blob/master/IJCTF2020/adventure/crystal_key/plot-fourier.py) function.

![image](https://github.com/Bonfee/CCIT20-writeups/raw/master/IJCTF2020/adventure/crystal_key/last.png)

With some imagination, you can see the text ```IROK``` , a character of Ready player one.

The final flag can now be submitted:
```IJCTF{kn4ps4ck_brut3_f0rrc3_u1t1m4t3_g4m3_0f_l1f3_IROK}```

## Participants
| ![image](https://github.com/andrea-mengascini.png?size=200) | ![image](https://github.com/Bonfee.png?size=200) | ![image](https://github.com/timmykill.png?size=200) | ![image](https://github.com/Anatr1.png?size=200) |
| ------------- | ------------- | ------------- | ------------- |
| [@aandryyy](https://github.com/andrea-mengascini) | [@bonfee](https://github.com/Bonfee) | [@timmykill](https://github.com/timmykill) | [@H4R](https://github.com/Anatr1) |****

Original writeup (https://github.com/Bonfee/CCIT20-writeups/tree/master/IJCTF2020/adventure).