64bps
type: #WEB #whitebox difficulty: #easy SOLVED by: #writeup The challenge statement contains a Unix command, which means the following. Create 2gb.txt and write 2 GiB (2147483648 bytes) of random data dd if=/dev/random of=2gb.txt bs=1M count=2048 Append the contents of flag.txt to the end of 2gb.txt cat flag.txt >> 2gb.txt Delete flag.txt rm flag.txt So we can see that the first 2 GiB of 2gb.txt is random data and the flag is at the end....