Skip to content

Commit

Permalink
add mitmproxy to exploitation module
Browse files Browse the repository at this point in the history
  • Loading branch information
shadawck committed Jul 25, 2020
1 parent 7e88bd6 commit 51902fc
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions modules/exploitation/mitmproxy.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
#!/usr/bin/env python
#####################################
# Installation module for mitmproxy
#####################################

# AUTHOR OF MODULE NAME
AUTHOR="Rémi HUGEUET (@shadawck)"

# DESCRIPTION OF THE MODULE
DESCRIPTION="This module will install mitmproxy - Your swiss-army knife for debugging, testing, privacy measurements, and penetration testing."

# 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/mitmproxy/mitmproxy"

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

# DEPENDS FOR DEBIAN INSTALLS
DEBIAN="git,python3,python3-pip"

# DEPENDS FOR FEDORA INSTALLS
FEDORA="git,python3,python3-pip"

# COMMANDS TO RUN AFTER
AFTER_COMMANDS="cd {INSTALL_LOCATION},pip3 install -r requirements.txt,python3 setup.py install"

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

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

0 comments on commit 51902fc

Please sign in to comment.