Skip to content

Commit

Permalink
Merge pull request trustedsec#347 from Ziemeck/patch-1
Browse files Browse the repository at this point in the history
Create ncrack.py
  • Loading branch information
trustedsec authored Oct 3, 2017
2 parents 0c81fc0 + 2e7a3b6 commit 2ff8a89
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions modules/vulnerability-analysis/ncrack.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
#!/usr/bin/env python
#####################################
# Installation module for testSSL
#####################################

# AUTHOR OF MODULE NAME
AUTHOR="Marcin Ziemczyk"

# DESCRIPTION OF THE MODULE
DESCRIPTION="This module will install/update ncrack."

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

# LOCATION OF THE FILE OR GIT/SVN REPOSITORY
REPOSITORY_LOCATION="https://github.com/nmap/ncrack.git"

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

# DEPENDS FOR DEBIAN INSTALLS
DEBIAN=""

# DEPENDS FOR FEDORA INSTALLS
FEDORA=""

# DEPENDS FOR ARCHLINUX INSTALLS
ARCHLINUX=""

# COMMANDS TO RUN AFTER
AFTER_COMMANDS="cd {INSTALL_LOCATION},./configure,make"

0 comments on commit 2ff8a89

Please sign in to comment.