Skip to main content
Marios Daskalas
Cyber Security Specialist
View all authors

Hack The Box - Fawn

· 8 min read
Marios Daskalas
Cyber Security Specialist

Howdy my fellow Cyber Enthusiasts! Welcome to the second Starting Point Hack The Box offers. I am excited to embark on this journey with you. So, without further ado, let’s dive in! :)

Need to embark on an exciting journey on Hack The Box? Sign up now using the following Link.

Remember to change the IP adress to your allocated one! :)

There are 2 options available to connect to our machine. First using Pwnbox or secondly using OpenVPN.

Hack The Box - Meow

· 8 min read
Marios Daskalas
Cyber Security Specialist

Howdy my fellow Cyber Enthusiasts! Welcome to the first Starting Point Hack The Box offers. I am excited to embark on this journey with you. So, without further ado, let’s dive in! :)

Need to embark on an exciting journey on Hack The Box? Sign up now using the following Link.

Remember to change the IP adress to your allocated one! :)

There are 2 options available to connect to our machine. First using Pwnbox or secondly using OpenVPN.

Pico CTF - What Netcat

· One min read
Marios Daskalas
Cyber Security Specialist

Using netcat (nc) is going to be pretty important. Can you connect to jupiter.challenges.picoctf.org at port 25103 to get the flag?

Open up the terminal and type the following command.

nc jupiter.challenges.picoctf.org 25103

You've got the flag. If you want to learn more about nc type the following command to the terminal.

man nc

Pico CTF - Wave A Flag

· One min read
Marios Daskalas
Cyber Security Specialist

Download the warm program.

cat warm;

returns Hello user! Pass me a -h to learn what I can do!-hOh, help? I actually don't do much, but I do have this flag here:

We can already see the flag here, but we can take it a step further. Give permissions of the executable with:

chmod +x warm
./warm -h

returns the flag.

Pico CTF - Warmed Up

· One min read
Marios Daskalas
Cyber Security Specialist

What is 0x3D (base 16) in decimal (base 10)?

There is a thing called ASCII table that contains data in different formats. For example, the ASCII 65 corresponds to the HEX -> 41 and the symbol 'A'. These values are all equal, but in different representations.

You can take a look at ASCII Codes Table. ASCII Codes Table Image Credit: ASCII Codes Table

Pico CTF - Let's Warm Up

· One min read
Marios Daskalas
Cyber Security Specialist

If I told you a word started with 0x70 in hexadecimal, what would it start with in ASCII?

There is a thing called ASCII table that contains data in different formats. For example, the ASCII 65 corresponds to the HEX -> 41 and the symbol 'A'. These values are all equal, but in different representations.

Pico CTF - Tab Tab Attack

· One min read
Marios Daskalas
Cyber Security Specialist

First dowload the Addadshashanammu.zip file.

Run the following command to unzip its contents.

unzip -u Addadshashanammu.zip

Then change directory to Addadshashanammu

cd Addadshashanammu/

Pico CTF - strings it

· One min read
Marios Daskalas
Cyber Security Specialist

Download strings file and type the following command in the terminal.

strings strings | grep picoCTF

If you want to learn more about strings type the following command.

man strings

Pico CTF - Serpentine

· One min read
Marios Daskalas
Cyber Security Specialist

Use wget to download the Python file.

A short description from Wikipedia: GNU Wget (or just Wget, formerly Geturl, also written as its package name, wget) is a computer program that retrieves content from web servers. It is part of the GNU Project. Its name derives from "World Wide Web" and "get". It supports downloading via HTTP, HTTPS, and FTP.