top of page

Easy Scan Script

Almost all the CTFs starts with you having to find the first clues to initiate your job.

This is the Recon phase, it can be boring to run multiple commands every time, maybe you close the shell and lose the results and so on..

 

So i have create a bash script that will ask you only the domain, it will scan with nmap and look for hidden directories if there is a web application on port 80, save all the results in 2 files and than create a light weight report on a third file and print it when is ready.

​

Create the script file and paste the code inside:

--> nano EasyScan.sh

​

On linux than grant executable permission:

--> chmod +x EasyScan.sh

​

Than you can run the script:

--> sudo ./EasyScan.sh

​

THE SCRIPT

View it on GitHub here

​

​

​

bottom of page