Skip to main content

idekCTF 2021 FORENSICS

FILE 

PROBLEM:

Description

Cool image, right?

Attachments

cool_image.jpg

SOLUTION

We are provided with a file named cool_image.jpg but I got an hint from the title to use file command so, I used file cool_image.jpg and I found that this is not a jpg file at all this is a text file and so I tries to open it using nano and got the flag. It was.....

idek{f1l3_3xt3ns10n5_4r3_d3c31v1ng}


Comments

Popular posts from this blog

GET STARTED WITH SQLMAP

sqlmap is an open source penetration testing tool that automates the process of detecting and exploiting SQL injection flaws and taking over of database servers. learn more...   So lets know how to use it....... Lets start with installation   FOR WINDOWS:                  In the official website of sqlmap we are provided with a zip file. Download it by clicking on it                 Extract it into a desired directory and you must have gotten a python file named sqlmap.py.                                                              So if you already have python installed in your machine continue and use command line python3  <path_to_sqlmap.py> <required_parameters>                           FOR LINUX:                          Most of the Linux machines already have sqlmap prebuilt                          If not, type in the following command in you terminal                                         $ sudo apt install sqlmap Now we have everything. So lets get into it.....