Skip to content

Commit

Permalink
add nps and cupp
Browse files Browse the repository at this point in the history
  • Loading branch information
TrustedSec committed Aug 29, 2017
1 parent a81de2c commit 3d68504
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 1 deletion.
36 changes: 36 additions & 0 deletions modules/post-exploitation/nps_payload.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
#!/usr/bin/env python
#####################################
# Installation module for UNICORN
#####################################

# AUTHOR OF MODULE NAME
AUTHOR="David Kennedy (ReL1K)"

# DESCRIPTION OF THE MODULE
DESCRIPTION="This module will install/update NPS Payload - non-powershell msbuild code execution (ben0xa)"

# 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/trustedsec/nps_payload"

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

# DEPENDS FOR DEBIAN INSTALLS
DEBIAN="git"

# DEPENDS FOR FEDORA INSTALLS
FEDORA="git"

# COMMANDS TO RUN AFTER
AFTER_COMMANDS=""

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

# PREREQ INSTALL MODULES NEEDED FOR THIS TOOL TO WORK PROPERLY
TOOL_DEPEND=""

7 changes: 7 additions & 0 deletions readme/CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
~~~~~~~~~~~~~~~~~
version 1.15
~~~~~~~~~~~~~~~~~

* add nps_payload
* added cupp (PR)

~~~~~~~~~~~~~~~~~
version 1.14
~~~~~~~~~~~~~~~~~
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.14"
grab_version = "1.15"

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

0 comments on commit 3d68504

Please sign in to comment.