IceCTF 2016 - Thor is a hacker now

Challenge description:

Thor has been staring at this for hours and he can't make any sense out of it, can you help him figure out what it is?

The text file provided is just a hexdump produced with xxd. xxd actually has a feature to reverse a hexdump back into the original file, from there I identified the resulting file's format with the file command. It was an lzip. Extracting the lzip resulted in the following image:

thor

Flag:

IceCTF{h3XduMp1N9_l1K3_A_r341_B14Ckh47}

Commands that were run in order:

 xxd -r thor.txt > thor.bin
→ file thor.bin
thor.bin: lzip compressed data, version: 1
lzip -d thor.bin
→ file thor.bin.out
thor.bin.out: JPEG image data, JFIF standard 1.01
→ mv thor.bin.out thor.jpg