fixme2.py

Download the script:
curl -s https://artifacts.picoctf.net/c/5/fixme2.py -o fixme2.py

Run it:
python3 fixme2.py

If we read it:
cat fixme2.py

Assignment and equality are different things in programming languages, and when we are using if condition, we want to use equality instead to check if true or false.
We will just another equal besides it:
vim
:wq
cat fixme2.py

Now if we run it again:
python3 fixme2.py

We solved it.
Last updated