ctf_aria

write up ctf by ariafatah


Project maintained by ariafatah0711 Hosted on GitHub Pages — Theme by mattgraham

soal

If I told you a word started with 0x70 in hexadecimal, what would it start with in ASCII?

hint

solve

ipython3 -c "0x70" # DEC
# Out[1]: 112

ipython3 -c "chr(0x70)" # char
# Out[1]: 'p'

flag

picoCTF{p}