BE02 - 100pts
Last updated
Was this helpful?
Last updated
Was this helpful?
Download the file and find a way to get the flag. Contents: rot13
Challenge Files:
We could decompile the binary using Ghidra to understand how it works, but trial and error is faster for this challenge.
Sending a large number of characters as input (a >32 character string) causes a segmentation fault and prints the flag.
We can use 33 a
's as input to get the flag: python -c "print('a'*33)" | ./rot13
.
luckyNumber13