Rating:
#### Password 3 (225 pts)
1. Run [p3_solve.py](https://finay.github.io/Writeups/Cyberyoddha/Solve-Scripts/p3_solve.py)
```python
import base64
given = "FgwWARMuF2UhPQotZScKFTsxCjcVJmYKY2FqCiE9FSEmCjJlMTksKA=="
given = given.encode("ascii")
given = base64.b64decode(given)
given = given.decode("ascii")
flag = []
for i in given:
flag += [chr(ord(i) ^ 0x55)]
print("".join(flag))
```
FLAG: CYCTF{B0th_x0r_@nd_b@s3_64?_th@ts_g0dly}