Skip to content

Latest commit

 

History

History

2Warm

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

Notes

Challenge: 2Warm

The problem given was "Can you convert the number 42 (base 10) to binary (base 2)?" Using bc (a command line calculator) we can convert the number 42 to binary.

Command:

echo "obase=2; 42" | bc

Output:

101010

The flag:

picoCTF{101010}