CTF-WriteUps

Writeups are the easiest mode to showcase your way of solution. This Repo is all about Writeups I Write while Playing CTF's.

View on GitHub

NahamCon CTF - Writeup (2021)

Finally, after a month of hype I had a chance to play and here are writeups for some of the challenges I solved.

Read The Rules (Warm Up) :

When opened the Read the Rules page it seemed to be an ordinary web page, Nothing Special!!

I decided to look the source code of the page and there it was, A Comment which had the valid flag flag{90bc54705794a62015369fd8e86e557b}.

Shoelaces :

Shoelace.jpg look liked a simple image at first I thought it was a stego image, but later realised its normal image with flag is encoded in it. So output the printable strings and grep the flag.
flag{137288e960a3ae9b148e8a7db16a69b0}.

$ strings shoelaces.jpg | grep -i flag
flag{137288e960a3ae9b148e8a7db16a69b0}

Pollex :

So I downloaded the file give when I visited the downloaded folder I saw a flag at the bottom of image now when opened iw was gone. I decided to screen shot the flag and clear it. flag{65c34a1ec121a286600ddd48fe36bc00}

Veebee :

So it was a .vbe file and thanks to John Hammond, the author, he had the tool to solve this in his github repo.

$ python3 vbedecode.py veebee.vbe                                
                            
' VeeBee goes buzz buzz
'
'
MsgBox("Sorry, not that easy!")
MsgBox("Okay, actually, you're right. It is that easy.")
MsgBox("flag{f805593d933f5433f2a04f082f400d8c}")

The Mission :

This was straight forward challenge, same as Read the Rules.

This challenge revealed a mission category of challenges where to get to next challenge you have to solve the previous challenge.

Bionic :

This challenge gave a static website Constellations to explore and find flags.

So like any web challenge I started with looking for robots.txt and there it was url for next challenge and a flag.

HTB Modules :


My Status :