Skip to content

Commit

Permalink
add ike-scan module
Browse files Browse the repository at this point in the history
  • Loading branch information
ninewires committed Mar 9, 2016
1 parent f0afdfd commit 7095d36
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions modules/vulnerability-analysis/ike-scan.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
#!/usr/bin/env python
#####################################
# Installation module for ike-scan
#####################################

# AUTHOR OF MODULE NAME
AUTHOR="Jason Ashton (@jayw0k)"

# DESCRIPTION OF THE MODULE
DESCRIPTION="This module will install/update ike-scan - a command-line tool for discovering, fingerprinting and testing IPsec VPN systems"

# 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/royhills/ike-scan.git"

# WHERE DO YOU WANT TO INSTALL IT
INSTALL_LOCATION="ike-scan"

# DEPENDS FOR DEBIAN INSTALLS
DEBIAN="git,gcc,make"

# DEPENDS FOR FEDORA INSTALLS
FEDORA="git,gcc,make"

# DEPENDS FOR ARCHLINUX INSTALLS
ARCHLINUX="git,gcc,make"

# COMMANDS TO RUN AFTER
AFTER_COMMANDS="cd {INSTALL_LOCATION}, autoreconf --install, ./configure --with-openssl, make, make install"

# THIS WILL CREATE AN AUTOMATIC LAUNCHER FOR THE TOOL
LAUNCHER="ike-scan"

0 comments on commit 7095d36

Please sign in to comment.