Skip to content
This repository was archived by the owner on Feb 20, 2026. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions profiles/havoc.yaotl
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ Teamserver {
Port = 40056

Build {
Compiler64 = "data/x86_64-w64-mingw32-cross/bin/x86_64-w64-mingw32-gcc"
Compiler86 = "data/i686-w64-mingw32-cross/bin/i686-w64-mingw32-gcc"
Compiler64 = "/usr/bin/x86_64-w64-mingw32-gcc"
Compiler86 = "/usr/bin/i686-w64-mingw32-gcc"
Nasm = "/usr/bin/nasm"
}
}
Expand Down
24 changes: 5 additions & 19 deletions teamserver/Install.sh
Original file line number Diff line number Diff line change
@@ -1,22 +1,8 @@
#!/bin/bash
set -e

if [ ! -d "dir/x86_64-w64-mingw32-cross" ]; then
sudo apt -qq --yes install golang-go nasm mingw-w64 wget >/dev/null 2>&1
# Install required dependencies
sudo apt -qq --yes install golang-go nasm mingw-w64 wget >/dev/null 2>&1

if [ ! -d "data" ]; then
mkdir data
fi

if [ ! -f /tmp/mingw-musl-64.tgz ]; then
wget https://musl.cc/x86_64-w64-mingw32-cross.tgz -q -O /tmp/mingw-musl-64.tgz
fi


tar zxf /tmp/mingw-musl-64.tgz -C data

if [ ! -f /tmp/mingw-musl-32.tgz ]; then
wget https://musl.cc/i686-w64-mingw32-cross.tgz -q -O /tmp/mingw-musl-32.tgz
fi

tar zxf /tmp/mingw-musl-32.tgz -C data
fi
# Ensure data directory exists
[ -d "data" ] || mkdir data