“What is 0x3D
(base 16) in decimal (base 10)?”
Again, CyberChef is the tool we want to use for this problem. We use the same steps from the “Let’s Warm Up” problem, but there isn’t a “From Base16” option. However, there is a “From Base” recipe with an option to adjust the Radix (or “root”, another name for “base”). If we drag this recipe into the Recipe field and adjust the Radix to 16
, we get the right conversion in the output (61
).
Wrapping 61
in the usual picoCTF{}
gives us the correct flag.
“Can you convert the number 42 (base 10) to binary (base 2)?”
Once again, we’ll use CyberChef for this problem. There is a “To Binary” recipe, but this returns 4
in binary and 2
in binary, which isn’t what we want. The recipe we’re looking for is “To Base” with a Radix of 2
. This gives us 101010
, which gives us the correct flag when we wrap it with picoCTF{}
.
CTF
blog content practice