mirror of
https://git.freebsd.org/ports.git
synced 2025-05-14 00:01:52 -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.
32 lines
2.5 KiB
HTML
32 lines
2.5 KiB
HTML
--- templates/agents.html.orig 2022-09-17 15:28:09 UTC
|
|
+++ templates/agents.html
|
|
@@ -143,6 +143,11 @@
|
|
<span class="icon is-large"><i class="fab fa-2x fa-apple"></i></span>
|
|
<br> darwin
|
|
</div>
|
|
+ <div class="has-text-centered platform" x-bind:class="{ 'selected': selectedPlatform === 'freebsd' }" x-show="platforms.includes('freebsd')" @click="changePlatform('freebsd')">
|
|
+ <span class="icon is-large"><i class="fab fa-2x fa-freebsd"></i></span>
|
|
+ <br> freebsd
|
|
+ </div>
|
|
+
|
|
</div>
|
|
</div>
|
|
</form>
|
|
@@ -174,7 +179,7 @@
|
|
<div class="tags are-medium has-addons">
|
|
<span class="tag is-black">
|
|
<span class="icon">
|
|
- <i class="fab" x-bind:class="{ 'fa-windows': command.platform === 'windows', 'fa-linux': command.platform === 'linux', 'fa-apple': command.platform === 'darwin' }"></i>
|
|
+ <i class="fab" x-bind:class="{ 'fa-windows': command.platform === 'windows', 'fa-linux': command.platform === 'linux', 'fa-apple': command.platform === 'darwin', 'fa-freebsd': command.platform === 'freebsd' }"></i>
|
|
</span>
|
|
</span>
|
|
<span class="tag is-dark" x-text="command.executor"></span>
|
|
@@ -193,7 +198,7 @@
|
|
<div class="tags are-medium has-addons">
|
|
<span class="tag is-black">
|
|
<span class="icon">
|
|
- <i class="fab" x-bind:class="{ 'fa-windows': command.platform === 'windows', 'fa-linux': command.platform === 'linux', 'fa-apple': command.platform === 'darwin' }"></i>
|
|
+ <i class="fab" x-bind:class="{ 'fa-windows': command.platform === 'windows', 'fa-linux': command.platform === 'linux', 'fa-apple': command.platform === 'darwin', 'fa-freebsd': command.platform === 'freebsd' }"></i>
|
|
</span>
|
|
</span>
|
|
<span class="tag is-dark" x-text="command.executor"></span>
|