ports/security/caldera/files/patch-plugins_manx_update-shells.sh
Jose Alonso Cardenas Marquez 84e20fa244 security/caldera: New port: Automated Adversary Emulation Platform
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.
2023-04-29 01:08:03 -05:00

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