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.
add jexboss JBOSS exploitation framework
- Loading branch information
TrustedSec
committed
Nov 29, 2016
1 parent
8e701a9
commit c493810
Showing
3 changed files
with
36 additions
and
1 deletion.
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,29 @@ | ||
#!/usr/bin/env python | ||
##################################### | ||
# Installation module for JexBoss | ||
##################################### | ||
|
||
# AUTHOR OF MODULE NAME | ||
AUTHOR="Dave Kennedy (@HackingDave)" | ||
|
||
# DESCRIPTION OF THE MODULE | ||
DESCRIPTION="This module will install/update JexBoss - an exploitation toolkit for JBOSS" | ||
|
||
# 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/joaomatosf/jexboss" | ||
|
||
# WHERE DO YOU WANT TO INSTALL IT | ||
INSTALL_LOCATION="jexboss" | ||
|
||
# DEPENDS FOR DEBIAN INSTALLS | ||
DEBIAN="git python-pip" | ||
|
||
# DEPENDS FOR FEDORA INSTALLS | ||
FEDORA="git python-pip" | ||
|
||
# COMMANDS TO RUN AFTER | ||
AFTER_COMMANDS="cd {INSTALL_LOCATION},pip install -r requires.txt" |
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
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