Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion hackme.sh
Original file line number Diff line number Diff line change
@@ -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