forked from trustedsec/ptf
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request trustedsec#550 from qt-pie/patch-1
Added Legion to vulnerability-analysis modules
- Loading branch information
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
#!/usr/bin/env python | ||
##################################### | ||
# Installation module for Legion | ||
##################################### | ||
|
||
# AUTHOR OF MODULE NAME | ||
AUTHOR="qt-pie" | ||
|
||
# DESCRIPTION OF THE MODULE | ||
DESCRIPTION="This module will install/update Legion by GoVanguard - a semi-automated network penetration testing framework based on the tool Sparta (https://govanguard.com/legion)" | ||
|
||
# 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/GoVanguard/legion" | ||
|
||
# WHERE DO YOU WANT TO INSTALL IT | ||
INSTALL_LOCATION="legion" | ||
|
||
# DEPENDS FOR DEBIAN INSTALLS | ||
DEBIAN="git docker xorg" | ||
|
||
# DEPENDS FOR FEDORA INSTALLS | ||
FEDORA="git docker xorg-x11-server-Xorg" | ||
|
||
AFTER_COMMANDS="cd {INSTALL_LOCATION}/docker,chmod +x runIt.sh,xhost +local:docker,./runIt.sh" | ||
|
||
# create a launcher | ||
LAUNCHER="" | ||
|
||
# PREREQ INSTALL MODULES NEEDED FOR THIS TOOL TO WORK PROPERLY | ||
TOOL_DEPEND="" |