flappy-js
flappy bird clone.
Last updated
flappy bird clone.
Last updated
Are you a pro gamer? Can you get a score of 31337 in this game?
(flag format is
greyctf{...}
because I made a mistake :p)Author: daniellimws
We were given a site called "Clumsy Bird" which is essentially a Flappy Bird clone. There are TWO ways to solve this challenge. I will be explaining both of them!
From the JavaScript code snippet, we can see that we need to call genFlag()
in order to get the flag, and so we did via Firefox Browser Console!
Flag: greyctf{5uch_4_pr0_g4m3r}
Using the same JavaScript code snippet, we noticed the object game.data.steps >= 31337
and so we went to the Firefox Browser Console and ran game.data
first, just to see what was the output.
We noticed the steps
variable, and since the challenge wants us to get a score of 31337 and above, we then ran game.data.steps = 31337
Flag: greyctf{5uch_4_pr0_g4m3r}
When we were given the to the Clumsy Bird challenge, the first thing we did was "View Page Source". From there, we were able to see TWO scripts being loaded.
is just a standard HTML5 game engine library, so we looked at clumy-min.js
and searched for the string "flag" via .
I'm in this photo and I don't like it!