ctf-writeup/Buckeye CTF 2023/replace-me
Muhammad Daffa 489f123037 feat: added sunshine and buckeye 2023-10-09 21:41:57 +07:00
..
images feat: added sunshine and buckeye 2023-10-09 21:41:57 +07:00
README.md feat: added sunshine and buckeye 2023-10-09 21:41:57 +07:00
dist feat: added sunshine and buckeye 2023-10-09 21:41:57 +07:00

README.md

replace-me

I knew I shouldn't have gotten a cheap phone :/

About the Challenge

We have been given a boot image file (You can download the file here), and we need to find the flag there

How to Solve?

First, you can use file command in linux to find out the type of file to be analyzed

file

When I solved this challenge yesterday, I used binwalk, but if you are using the intended way, you can use mkbootimg. Now, to extract the files using binwalk, here is the command I used to extract the files from dist:

binwalk -e dist

binwalk

And then extract the extracted file again called 5BC000 using binwalk

binwalk -e 5BC000

binwalk-2

And the flag was located in /cpio-root/res/images/charger directory

flag

bctf{gr33n_r0b0t_ph0N3}