-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #606 from 0xv1n/havoc
Adds Havoc C2 module.
- Loading branch information
Showing
1 changed file
with
35 additions
and
0 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
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="" |