From bcbbe18aa419411c8b29da1e651fc4a7a9efbe93 Mon Sep 17 00:00:00 2001 From: Mr Kumar <72251189+Mrkumar98@users.noreply.github.com> Date: Mon, 25 Oct 2021 16:19:03 +0530 Subject: [PATCH] Update hackme.sh added some simple commands ... --- hackme.sh | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/hackme.sh b/hackme.sh index fea1a3c..e633135 100644 --- a/hackme.sh +++ b/hackme.sh @@ -1,2 +1,11 @@ #!/bin/bash -echo "Working on project...." +echo "Starting Pentest... Just Wait" +#Some Inputs +read -p "Enter IP or URL :" ip; +echo "We are Pentesting on '$ip'" +rm -rf nMap +rm -rf nikto.log +mkdir nMap +nmap -p- -Pn -T4 -oN nMap/initial $ip; +nikto -h $ip | tee nikto.log; +enum4linux -a $ip | tee nikto.log