Step 1: Click on the green button to Start the Lab
Step 2: Hack the URL or IP of the lab
Step 3: Use your skills and logic to find the flags!
The challenge presents a QR code image. The goal is to scan the QR code and decode its content to find the hidden flag.
The first step is to scan the QR code to extract its data. This can be done using various methods:
zbarimg qr_challenge.png
(requires installing zbar-tools).Scanning the QR code will reveal a long string of hexadecimal characters:
63653232323863342d663934662d343062302d623438392d653533626530313562336334
The extracted string is not the flag itself, but a hex-encoded representation of the flag. The next step is to decode this hex string back into readable text (ASCII).
You can use a simple Python script to decode the string:
hex_string = "63653232323863342d663934662d343062302d623438392d653533626530313562336334"
flag = bytes.fromhex(hex_string).decode('utf-8')
print(f"The flag is: {flag}")
On a Linux or macOS system, you can use the command line:
echo "63653232323863342d663934662d343062302d623438392d653533626530313562336334" | xxd -r -p
After decoding the hex string, you will get the final flag:
ce2228c4-f94f-40b0-b489-e53be015b3c4
Sign-in to your account to access your hacking courses and cyber security labs.
Access all hacking courses and cyber security labs.