lists of JSONs

Challenge

Web...ish...

https://lists-of-jsons.web.app/

Solution

When we click on the link, we end up on a simple webpage with a list of values.

Using Wappalyzer you can see there's some Firebase database behind it.

Using our Developer Tools, we can see there's some interesting public information in the init.js file.

Thanks to this we have the database url and we can access the .json file by going on this page: https://lists-of-jsons-default-rtdb.firebaseio.com/flag.json

Now it's just a question of rebuilding the flag by following the clues. I let ChatGPT build me a Python script that does all the work for me.

After running it, we get our flag.

Last updated