mirror of
https://git.freebsd.org/ports.git
synced 2025-05-13 07:41: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.
11 lines
1 KiB
HTML
11 lines
1 KiB
HTML
--- templates/abilities.html.orig 2022-09-17 15:28:09 UTC
|
|
+++ templates/abilities.html
|
|
@@ -103,7 +103,7 @@
|
|
<p class="platforms">
|
|
<template x-for="platform of getAbilityPlatforms(ability)">
|
|
<span class="has-tooltip-arrow has-tooltip-left no-underline" x-bind:data-tooltip="platform">
|
|
- <span class="icon is-small"><i class="fab" x-bind:class="if (platform.includes('windows')) return 'fa-windows'; else if (platform.includes('darwin')) return 'fa-apple'; else if (platform.includes('linux')) return 'fa-linux'"></i></span>
|
|
+ <span class="icon is-small"><i class="fab" x-bind:class="if (platform.includes('windows')) return 'fa-windows'; else if (platform.includes('darwin')) return 'fa-apple'; else if (platform.includes('linux')) return 'fa-linux'; else if (platform.includes('freebsd')) return 'fa-freebsd'"></i></span>
|
|
</span>
|
|
</template>
|
|
</p>
|