Flareon2020-Level1

1-Fidler

Assets:

First Part:

This is very simple. When you run the fidler.exe file, it shows a password box. The password checker function is simple. copy the password_check() in a new file run it with Python and print the ‘key’ value: “ghost”.

def password_check(input):
    altered_key = 'hiptu'
    key = ''.join([chr(ord(x) - 1) for x in altered_key])
    print(key)
    return input == key

password_check("alee")

Second phase:

We should earn 200000000000 coins from this game. Every time we click on the cat, it gives us one coin. so we should click on the cat 200000000000 times. 😀
If you look at the fidler.py code you see a function: cat_clicked() that increases the coin at every run one time.
so we should just change the 1 to 100000000000 and save the file.

But we can’t use the fidler.exe for running the game because it is a compiled exe python file. but we can install “pygame” package to run the game as a py file.
so after running the changed fidler.py and clicking on the cat two times we have the flag.

Leave a Reply

Your email address will not be published. Required fields are marked *