You are given 128 puzzles (https://en.wikipedia.org/wiki/15_puzzle) The ith puzzle determines the ith bit of the flag:
Note: There is an important note on the News page about this challenge.
def is_soluble(i): return 0 flag = ' ' for i in range(128): flag = ('1' if is_soluble(i) else '0') + flag print('SharifCTF{%016x}' % int(flag, 2)) Download
Action | Rating | Author team |
---|---|---|
Read writeup |
not rated
|
TheRomanXpl0it |
Read writeup |
not rated
|
fack rules |