🟨Hash of the Server IP Address

CRYPTO | code breaking secrets hidden in numbers and symbols | MEDIUM

A one-way hash is a cryptographic function that takes an input (or 'message') and returns a fixed-size string of bytes. The output is unique to each unique input, making it impossible to generate the original input from the hash. This property is crucial for applications like password storage, where the hash provides security by ensuring that passwords cannot be easily reversed.

This challenge simple asks you to figure out two things: 1) what is the IP address of the server for ctf.bizity.biz and 2) what is the hash of that ip address.

There are multiple hash algorithms out there and this one asks for the MD5.

Hints

Be careful not to include new-line characters or any spaces in the ip address since that would give you a completely different hash.

Solutions

Last updated