Flag command

The first interface looks like this, where the prompt says us to play game.

image

Let's play the game hehee..

image

The first thing I will look is the source code.

I have looked over all the css files, if the flag is somewhere commended or not , and end up finding nothing..

image

But one interestig thing I have got is fetchOptions function under main.js, simply the function is used to fetch the data and convert it to json data, can we access it ?

const fetchOptions = () => {
    fetch('/api/options')
        .then((data) => data.json())
        .then((res) => {
            availableOptions = res.allPossibleCommands;

        })
        .catch(() => {
            availableOptions = undefined;
        })
}

Yes, We can get the json output & here you can see a secret like Blip-blop, in a pickle with a hiccup! Shmiggity-shmack. Let's try to submit it in game : )

image

Yup here we got the flag.

imageimage