Skip to content

Commit

Permalink
add jexboss JBOSS exploitation framework
Browse files Browse the repository at this point in the history
  • Loading branch information
TrustedSec committed Nov 29, 2016
1 parent 8e701a9 commit c493810
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 1 deletion.
29 changes: 29 additions & 0 deletions modules/exploitation/jexboss.py
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"
6 changes: 6 additions & 0 deletions readme/CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
~~~~~~~~~~~~~~~~~
version 1.10.2
~~~~~~~~~~~~~~~~~

* add jexboss JBOSS exploitation toolkit

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

# version information
grab_version = "1.10.1"
grab_version = "1.10.2"

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

0 comments on commit c493810

Please sign in to comment.