we will solve packer form picoCTF

Untitled

download the binary and run file on it

Untitled

it’s a normal ELF 64-Bit binary

now let’s run UPX on it

upx -d ./out

Untitled

notice that the file was unpacked

now let’s run strings on it

strings out | grep -i flag

Untitled

now we got this hex decimal value

now let’s go to cyberchef to decode it

picoCTF{U9X_UnP4ck1N6_B1n4Ri3S_1a5a3f39}

Untitled

Amazing we got the flag!