Shop
Problem
Best Stuff - Cheap Stuff, Buy Buy Buy... Store Instance: source. The shop is open for business at
nc mercury.picoctf.net 42159
.
Solution
Choose an option to buy, and buy a large negative amount of them so the program gives them to you instead of you paying for them.
Then, buy 1 fruitful flag to have the program print the flag.
The complete program input and output is as follows:
We can decode this from decimal to ascii using Python like so
python -c 'print("".join([chr(x) for x in [112, 105, 99, 111, 67, 84, 70, 123, 98, 52, 100, 95, 98, 114, 111, 103, 114, 97, 109, 109, 101, 114, 95, 55, 57, 55, 98, 50, 57, 50, 99, 125]]))'
to get the flag.
Flag
picoCTF{b4d_brogrammer_797b292c}
Last updated