Skip to content

Commit

Permalink
update nmap script and fix root show install update
Browse files Browse the repository at this point in the history
  • Loading branch information
HackingDave committed Mar 14, 2021
1 parent 2f6fe2a commit 0a41a21
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 7 deletions.
12 changes: 6 additions & 6 deletions modules/vulnerability-analysis/nmap.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,22 @@

# INSTALL TYPE GIT, SVN, FILE DOWNLOAD
# OPTIONS = GIT, SVN, FILE
INSTALL_TYPE="SVN"
INSTALL_TYPE=""

# LOCATION OF THE FILE OR GIT/SVN REPOSITORY
REPOSITORY_LOCATION="https://svn.nmap.org/nmap/"
REPOSITORY_LOCATION=""

# WHERE DO YOU WANT TO INSTALL IT
INSTALL_LOCATION="nmap"
INSTALL_LOCATION=""

# DEPENDS FOR DEBIAN INSTALLS
DEBIAN="subversion,autoconf,build-essential,libssl-dev,flex,bison"
DEBIAN="nmap"

# DEPENDS FOR FEDORA INSTALLS
FEDORA="subversion,autoconf,make,automake,gcc,gcc-c++,kernel-devel,openssl-devel,flex,bison"
FEDORA="nmap"

# BYPASS UPDATES
BYPASS_UPDATE="YES"

# COMMANDS TO RUN AFTER
AFTER_COMMANDS="cd {INSTALL_LOCATION},./configure,make -j4,make install,cd {INSTALL_LOCATION}/ncat,./configure,make -j4,make install"
AFTER_COMMANDS=""
7 changes: 7 additions & 0 deletions readme/CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
~~~~~~~~~~~~~~~~~
version 2.4.8
~~~~~~~~~~~~~~~~~

* simplify the nmap install script to native OS installation
* fix root directories listing in show installed

~~~~~~~~~~~~~~~~~
version 2.4.7
~~~~~~~~~~~~~~~~~
Expand Down
2 changes: 1 addition & 1 deletion src/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def count_modules():
return counter

# version information
grab_version = "2.4.7"
grab_version = "2.4.8"

# banner
banner = bcolors.RED + r"""
Expand Down

0 comments on commit 0a41a21

Please sign in to comment.