mirror of
https://git.freebsd.org/ports.git
synced 2025-05-14 16:21:50 -04:00
CALDERA a cyber security platform designed to easily automate adversary emulation, assist manual red-teams, and automate incident response. It is built on the MITRE ATT&CK framework and is an active research project at MITRE. The framework consists of two components: - The core system. This is the framework code, consisting of what is available in this repository. Included is an asynchronous command-and-control (C2) server with a REST API and a web interface. - Plugins. These repositories expand the core framework capabilities and providing additional functionality. Examples include agents, reporting, collections of TTPs and more.
12 lines
479 B
Bash
12 lines
479 B
Bash
--- plugins/manx/update-shells.sh.orig 2022-08-08 23:34:48 UTC
|
|
+++ plugins/manx/update-shells.sh
|
|
@@ -1,7 +1,8 @@
|
|
-#!/bin/bash
|
|
+#!/bin/sh
|
|
cwd=$(pwd)
|
|
cd shells
|
|
GOOS=windows go build -o ../payloads/manx.go-windows -ldflags="-s -w" manx.go
|
|
GOOS=linux go build -o ../payloads/manx.go-linux -ldflags="-s -w" manx.go
|
|
GOOS=darwin go build -o ../payloads/manx.go-darwin -ldflags="-s -w" manx.go
|
|
+GOOS=freebsd go build -o ../payloads/manx.go-freebsd -ldflags="-s -w" manx.go
|
|
cd $cwd
|