Unbreakable Writeup
Cyber Apocalypse 2024
Solved by : thewhiteh4t
- This is a python jail challenge, at first it looks difficult because even built-ins cannot be used but then we realized two things :
- it is using
eval
instead ofexec
- open() is not blocked
- it is using
- Payload :
print(open('flag.txt').read())