diff --git a/CHANGELOG.md b/CHANGELOG.md index 3676450..fcb93fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,5 @@ ## CHANGELOG: +* v2.4f - Fixed issue with upper NMap port range(CC. DaveW) * v2.4e - Added NMap no ping switch to all scans * v2.4d - Fixed issue with rpcinfo install script * v2.4d - Fixed issue with Arachni install script diff --git a/sniper b/sniper index c6aa5ee..c568a32 100644 --- a/sniper +++ b/sniper @@ -604,7 +604,7 @@ if [ "$MODE" = "fullportonly" ]; then echo -e "$RESET" echo -e "$OKGREEN + -- ----------------------------=[Performing Port Scan]=------------------- -- +$RESET" if [ -z "$OPT1" ]; then - nmap -T4 -sV -O -v -p 1-65535 --script=* -P0 $TARGET -oX $LOOT_DIR/nmap/nmap-$TARGET.xml + nmap -T4 -sV -O -v -p 1-65355 --script=* -P0 $TARGET -oX $LOOT_DIR/nmap/nmap-$TARGET.xml else nmap -T4 -sV -O -v -p $OPT1 --script=* -P0 $TARGET -oX $LOOT_DIR/nmap/nmap-$TARGET.xml fi