# Journey to the Center of the Earth
## Challenge Description
Can you dig down to the center of the Earth?
-[Challenge File](https://github.com/Goutham-Rajesh/INCTF-NATIONAL-CHALL/blob/main/https://github.com/Goutham-Rajesh/INCTF-NATIONAL-CHALL/blob/main/journey_begins.zip)
## Write Up
- This is easy challenge just we need to unzip 50 zip files
- Can solve this challenge by writing a script in any programming language.
```bash=
#!/bin/bash
unzip journey_begins.zip
k=50
for i in {0..50}
do
unzip not_here$k.zip
rm not_here$k.zip
let "k--"
done
```

## Flag
`inctf{YoU_M4d3_1t}`
## Author
[P4BLØ](https://twitter.com/GouthamRajesh5)