justCTF 2021

Here are some challenges from justCTF 2021, not alot because I suck 😐

The interface was so nice looking, I had only done the Sanity check when I took this screenshot I got more after.

justCTF%202021%20b51d15bac77347a99e2531223fa939bd/Screenshot_from_2021-01-30_08-03-48.png

I did some others but I can’t remember them πŸ˜•

PDF Challenge - Easy

You get pdf the appears empty:

justCTF%202021%20b51d15bac77347a99e2531223fa939bd/Screenshot_from_2021-03-01_09-04-09.png

Using binwalk to extract files:

justCTF%202021%20b51d15bac77347a99e2531223fa939bd/Screenshot_from_2021-03-01_09-04-35.png

(Actually used foremost πŸ™‚)

justCTF%202021%20b51d15bac77347a99e2531223fa939bd/Screenshot_from_2021-03-01_09-05-01.png

You get this false_flag file, and mutool elf file:

justCTF%202021%20b51d15bac77347a99e2531223fa939bd/Screenshot_from_2021-03-01_09-06-29.png

Following the command in the false flag file:

justCTF%202021%20b51d15bac77347a99e2531223fa939bd/Screenshot_from_2021-03-01_09-09-12.png

You get this, and a hint about things not matching what the file command says they are.

justCTF%202021%20b51d15bac77347a99e2531223fa939bd/Screenshot_from_2021-03-01_09-12-43.png

Find the file B5FC8 which is full of hex:

justCTF%202021%20b51d15bac77347a99e2531223fa939bd/Screenshot_from_2021-03-01_09-32-05.png

Looking up the file signature you can see it is actually an image:

justCTF%202021%20b51d15bac77347a99e2531223fa939bd/Screenshot_2021-03-01_List_of_file_signatures_-_Wikipedia.png

Convert it from hex to binary to create the image:

xxd -r -p B5FC8 test_out.jpeg

You get the flag:

justCTF%202021%20b51d15bac77347a99e2531223fa939bd/test.jpeg

MyLittlePwny - Easy

This one was easy, it uses ponysay a version of cowsay

justCTF%202021%20b51d15bac77347a99e2531223fa939bd/Screenshot_from_2021-03-01_08-57-01.png

All you had to do was use the ` quotations to execute a command before the data is shown by ponysay

justCTF%202021%20b51d15bac77347a99e2531223fa939bd/Screenshot_from_2021-01-30_16-16-49.png

It doesn’t let you use cat, but using sort also works

justCTF%202021%20b51d15bac77347a99e2531223fa939bd/Screenshot_from_2021-01-30_16-16-44.png