Skip to content

Commit

Permalink
Merge branches from inital repo
Browse files Browse the repository at this point in the history
  • Loading branch information
3isenHeiM committed Dec 10, 2020
2 parents e4ad6b2 + 0e4683e commit f064b55
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
reports
**/MVS_*
**/*.html
1 change: 0 additions & 1 deletion MassVulScan.sh
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,6 @@ fi
echo -e " done."



echo -e "${red_color}${bold_color}$(date +"[%H:%M]") Here are the IPs that will be scanned.${end_color}"
if [[ ${exclude_file} != "" ]] ; then
echo -e " Don't worry, the exlude_file will be taken into account when giving these to masscan and nmap !"
Expand Down
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ List of available parameters/arguments:
-f (input file) = mandatory parameter that will contain the list of networks, IP or hostnames to scan
-e (exclude file) = optional parameter to exclude a list of networks or IP (no hostnames) to scan
-i (interactive mode) = optional parameter to choose ports to scan, speed (pkts/sec for Masscan) and Nmap script
-a (all ports) = optional parameter to scan all 65535 ports (TCP and UDP), at rate to 5K pkts/sec
-a (all ports) = optional parameter to scan all 65535 ports (TCP and UDP), at rate to 2K pkts/sec
-c (check) = optional parameter which perform a pre-scanning to identify online hosts and scan only them
-k (keep files) = optional parameter to keep all the IPs scanned in 2 files (with and without ports)
-ns (no Nmap scan) = optional parameter to detect the hosts with open ports only
Expand Down Expand Up @@ -100,3 +100,9 @@ Then, modify the variable `source_top_tcp` in the script (line 32).

# Known issues
Concerning SNMP, sometimes UDP port scan doesn't seems correctly working with masscan program. I'm trying to find a solution.
# TODO
Manage better multiple IP addresses on one network interface.

Improve process of installation (install what is strictly necessary, comparison of versions).

Include netcat packages.
12 changes: 11 additions & 1 deletion sources/installation.sh
Original file line number Diff line number Diff line change
Expand Up @@ -179,4 +179,14 @@ else
fi
}

auto_install_menu
if [[ $1 == "-y" ]]; then
root_user
echo -e "${blue_color}${bold_color}[-] Great, we starting the installation...please, be patient!${end_color}"
# Clearing the screen
clear
prerequisites_install
time_elapsed
exit 0
else
auto_install_menu
fi

0 comments on commit f064b55

Please sign in to comment.