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.
Merge branch 'trustedsec:master' into master
- Loading branch information
Showing
7 changed files
with
76 additions
and
9 deletions.
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
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
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" |
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,35 @@ | ||
#!/usr/bin/env python | ||
##################################### | ||
# Installation module for Havoc C2 | ||
##################################### | ||
|
||
# AUTHOR OF MODULE NAME | ||
AUTHOR="0xv1n" | ||
|
||
# DESCRIPTION OF THE MODULE | ||
DESCRIPTION="This module will install/update Havoc C2." | ||
|
||
# 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/HavocFramework/Havoc" | ||
|
||
# WHERE DO YOU WANT TO INSTALL IT | ||
INSTALL_LOCATION="havoc" | ||
|
||
# DEPENDS FOR DEBIAN INSTALLS | ||
DEBIAN="git, build-essential, apt-utils, cmake, libfontconfig1, libglu1-mesa-dev, libgtest-dev, libspdlog-dev, libboost-all-dev, libncurses5-dev, libgdbm-dev, libssl-dev, libreadline-dev, libffi-dev, libsqlite3-dev, libbz2-dev, mesa-common-dev, qtbase5-dev, qtchooser, qt5-qmake, qtbase5-dev-tools, libqt5websockets5, libqt5websockets5-dev, qtdeclarative5-dev, golang-go, qtbase5-dev, libqt5websockets5-dev, python3-dev, libboost-all-dev, mingw-w64, nasm" | ||
|
||
# DEPENDS FOR FEDORA INSTALLS | ||
FEDORA="git" | ||
|
||
# COMMANDS TO RUN AFTER | ||
AFTER_COMMANDS="cd {INSTALL_LOCATION}, cd teamserver, go mod download golang.org/x/sys, go mod download github.com/ugorji/go, cd {INSTALL_LOCATION}, make ts-build, make client-build" | ||
|
||
# THIS WILL CREATE AN AUTOMATIC LAUNCHER FOR THE TOOL | ||
LAUNCHER="" | ||
|
||
# PREREQ INSTALL MODULES NEEDED FOR THIS TOOL TO WORK PROPERLY | ||
TOOL_DEPEND="" |
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
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