Survey
Solution
#!/usr/bin/env python3
import string
response = "thank yoU for filling ouT our Feedback form! pLeAse rate the ctf on ctftime when you Get a chance. rememBer that we will accept Your writEups for forTy-eigHt hours After the competitioN for writeup prizes. hooK em hornS!"
for c in response:
if c in string.ascii_uppercase:
print(c, end='')
print()
$ ./solve.py
UTFLAGBYETHANKS
Fix the flag format:
UTFLAG{BYETHANKS}