Skip to content

Commit

Permalink
Merge pull request #607 from igibek/new-modules
Browse files Browse the repository at this point in the history
modules/intelligence-gathering/httprobe added
  • Loading branch information
HackingDave committed May 24, 2024
2 parents 863307c + 2f4bcf7 commit e9ff60b
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions modules/intelligence-gathering/httprobe.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
#!/usr/bin/env python
####################################
# Installation module for httprobe #
####################################

# AUTHOR OF MODULE NAME
AUTHOR="Igibek Koishybayev"

# DESCRIPTION OF THE MODULE
DESCRIPTION="This module will install/update httprobe"

# INSTALL TYPE GIT, SVN, FILE DOWNLOAD
INSTALL_TYPE="GIT"

# LOCATION OF THE FILE OR GIT/SVN REPOSITORY
REPOSITORY_LOCATION="https://github.com/tomnomnom/httprobe"

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

# DEPENDS FOR DEBIAN INSTALLS
DEBIAN="git,golang"

# COMMANDS TO RUN AFTER
AFTER_COMMANDS="cd {INSTALL_LOCATION},go get,go build"

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

0 comments on commit e9ff60b

Please sign in to comment.