
Here I’m going to give you a quick write-up for the challenges of National Cyber Drill that I was able to solve. I Hope you guys will find this helpful. You will find all the challenges here : http://13.92.58.29/CyberDrill/NCD-2021/
[ Thanks to Abrar Mostafiz YEALID ]
Basic
Eagles eye shot!! : 25


Flag : Cyb3rDr1ll{1_@M_UN@BL3_T0_F1Nd_U}
Warmup : 50


Flag : Cyb3RDr1ll{যদি তোর ডাক শুনে কেউ না আসে}
MR. VEGENERE : 50


Flag : Cyb3RDr1ll{BIBLIOKLEPT}
ZIPPED: 100

In this challenge we are provided with a zip file which contains 99 zip files. We have to write a script to unzip the files.
Bash Script :
for a in {1..99}; do for z in *.zip; do unzip $z; rm $z;done;done
After this we will get a PNG file which contains the flag.

Flag : Cyb3RDr1L{H3r03s_Liv3_F0r3v3r}
Part 2 Here
Source: Knight Squad
1 comment