Skip to content

Commit

Permalink
Merge pull request #2874 from mitre/magma
Browse files Browse the repository at this point in the history
Magma
  • Loading branch information
elegantmoose committed Feb 14, 2024
2 parents 84e2a91 + f7c1a3c commit 9ceb72d
Show file tree
Hide file tree
Showing 49 changed files with 470 additions and 122 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
Expand Up @@ -46,3 +46,6 @@
[submodule "plugins/emu"]
path = plugins/emu
url = https://github.com/mitre/emu.git
[submodule "plugins/magma"]
path = plugins/magma
url = https://github.com/mitre/magma.git
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Expand Up @@ -40,7 +40,7 @@ python -m pytest
```
This will run all unit tests in your current development environment. Depending on the level of the change, you might need to run the test suite on various versions of Python. The unit testing pipeline will run the entire suite across multiple Python versions that we support when you submit your PR.

We utilize `tox` to test CALDERA in multiple versions of Python. This will only run if the interpreter is present on your system. To run tox, execute:
We utilize `tox` to test Caldera in multiple versions of Python. This will only run if the interpreter is present on your system. To run tox, execute:
```
tox
```
Expand Down
27 changes: 23 additions & 4 deletions README.md
Expand Up @@ -16,7 +16,7 @@ The framework consists of two components:
an asynchronous command-and-control (C2) server with a REST API and a web interface.
2) **Plugins**. These repositories expand the core framework capabilities and providing additional functionality. Examples include agents, reporting, collections of TTPs and more.

## Resources and Socials
## Resources & Socials
* 📜 [Documentation, training, and use-cases](https://caldera.readthedocs.io/en/latest/)
* ✍️ [Caldera's blog](https://medium.com/@mitrecaldera/welcome-to-the-official-mitre-caldera-blog-page-f34c2cdfef09)
* 🌐 [Homepage](https://caldera.mitre.org)
Expand All @@ -37,6 +37,7 @@ These plugins are supported and maintained by the Caldera team.
- **[Fieldmanual](https://github.com/mitre/fieldmanual)** (documentation)
- **[GameBoard](https://github.com/mitre/gameboard)** (visualize joint red and blue operations)
- **[Human](https://github.com/mitre/human)** (create simulated noise on an endpoint)
- **[Magma](https://github.com/mitre/magma)** (VueJS UI for Caldera v5)
- **[Manx](https://github.com/mitre/manx)** (shell functionality and reverse shell payloads)
- **[Response](https://github.com/mitre/response)** (incident response)
- **[Sandcat](https://github.com/mitre/sandcat)** (default agent)
Expand All @@ -59,6 +60,7 @@ These requirements are for the computer running the core framework:
* Python 3.8+ (with Pip3)
* Recommended hardware to run on is 8GB+ RAM and 2+ CPUs
* Recommended: GoLang 1.17+ to dynamically compile GoLang-based agents.
* NodeJS (v16+ recommended for v5 VueJS UI)

## Installation

Expand All @@ -67,7 +69,7 @@ Concise installation steps:
git clone https://github.com/mitre/caldera.git --recursive
cd caldera
pip3 install -r requirements.txt
python3 server.py --insecure
python3 server.py --insecure --build
```

Full steps:
Expand All @@ -84,11 +86,28 @@ pip3 install -r requirements.txt

Finally, start the server.
```Bash
python3 server.py --insecure
python3 server.py --insecure --build
```

The --build flag automatically installs any VueJS UI dependencies, bundles the UI into a dist directory, and is served by the Caldera server. You will only have to use the --build flag again if you add any plugins or make any changes to the UI.
Once started, log into http://localhost:8888 using the default credentials red/admin. Then go into Plugins -> Training and complete the capture-the-flag style training course to learn how to use Caldera.

If you prefer to not use the new VueJS UI, revert to Caldera v4.2.0. Correspondingly, do not use the `--build` flag for earlier versions as not required.

### User Interface Development

If you'll be developing the UI, there are a few more additional installation steps.

**Requirements**
* NodeJS (v16+ recommended)

**Setup**

1. Add the Magma submodule if you haven't already: `git submodule add https://gitlab.mitre.org/caldera/other/magma`
1. Install NodeJS dependencies: `cd plugins/magma && npm install && cd ..`
1. Start the Caldera server with an additional flag: `python3 server.py --uidev localhost`

Your Caldera server is available at http://localhost:8888 as usual, but there will now be a hot-reloading development server for the VueJS front-end available at http://localhost:3000. Both logs from the server and the front-end will display in the terminal you launched the server from.

## Docker Deployment
To build a Caldera docker image, ensure you have docker installed and perform the following actions:
```Bash
Expand Down
6 changes: 3 additions & 3 deletions SECURITY.md
Expand Up @@ -28,14 +28,14 @@ Under this policy, "research" means activities in which you:

## Reporting a vulnerability

Information submitted under this policy will be used for defensive purposes only, i.e. to mitigate or remediate vulnerabilities. Since CALDERA is run by a not-for-profit and is open source by nature, by
Information submitted under this policy will be used for defensive purposes only, i.e. to mitigate or remediate vulnerabilities. Since Caldera is run by a not-for-profit and is open source by nature, by
submitting a vulnerability, you acknowledge that you have no expectation of payment. However, we will ensure that credit is given to the bug finder.

## What we would like to see from you

To help us triage and prioritize submissions, please include the following in your report:

- Affected version of CALDERA (committed hash or version number), operating system used, and python version.
- Affected version of Caldera (committed hash or version number), operating system used, and python version.

- Describe the location the vulnerability was discovered and the potential impact of exploitation.

Expand All @@ -49,7 +49,7 @@ When you choose to share your contact information with us, we commit to coordina

- Within ***10 business days***, we will acknowledge that your report has been received.

- After notifying the CALDERA team, we will open reported issues to the public within ***90 days***, or after a fix is released (whichever comes first).
- After notifying the Caldera team, we will open reported issues to the public within ***90 days***, or after a fix is released (whichever comes first).

- To the best of our ability, we will confirm the existence of the vulnerability to you and be as transparent as possible about what steps we are taking during the remediation process, including on issues or challenges that may delay resolution.

Expand Down
33 changes: 11 additions & 22 deletions app/api/rest_api.py
Expand Up @@ -7,7 +7,7 @@

import marshmallow as ma
from aiohttp import web
from aiohttp_jinja2 import template, render_template
from aiohttp_jinja2 import render_template

from app.api.packs.advanced import AdvancedPack
from app.api.packs.campaign import CampaignPack
Expand All @@ -29,44 +29,33 @@ def __init__(self, services):
asyncio.get_event_loop().create_task(AdvancedPack(services).enable())

async def enable(self):
self.app_svc.application.router.add_static('/assets', 'plugins/magma/dist/assets/', append_version=True)
# TODO: only serve static files in legacy plugin mode
self.app_svc.application.router.add_static('/gui', 'static/', append_version=True)
# unauthorized GUI endpoints
self.app_svc.application.router.add_route('*', '/', self.landing)
self.app_svc.application.router.add_route('*', '/enter', self.validate_login)
self.app_svc.application.router.add_route('*', '/logout', self.logout)
self.app_svc.application.router.add_route('GET', '/login', self.login)
self.app_svc.application.router.add_route('GET', '/', self.landing)
self.app_svc.application.router.add_route('POST', '/enter', self.validate_login)
self.app_svc.application.router.add_route('POST', '/logout', self.logout)
# unauthorized API endpoints
self.app_svc.application.router.add_route('*', '/file/download', self.download_file)
self.app_svc.application.router.add_route('POST', '/file/upload', self.upload_file)
# authorized API endpoints
self.app_svc.application.router.add_route('*', '/api/rest', self.rest_core)
self.app_svc.application.router.add_route('GET', '/api/{index}', self.rest_core_info)
self.app_svc.application.router.add_route('GET', '/file/download_exfil', self.download_exfil_file)

@template('login.html', status=401)
async def login(self, request):
return dict()
self.app_svc.application.router.add_route('GET', '/{tail:(?!plugin/).*}', self.handle_catch)

async def validate_login(self, request):
return await self.auth_svc.login_user(request)

@template('login.html')
async def logout(self, request):
await self.auth_svc.logout_user(request)

async def landing(self, request):
access = await self.auth_svc.get_permissions(request)
if not access:
# If user doesn't have access, server will attempt to redirect to login.
return await self.auth_svc.login_redirect(request)
plugins = await self.data_svc.locate('plugins', {'access': tuple(access), **dict(enabled=True)})
data = dict(plugins=[p.display for p in plugins], errors=self.app_svc.errors + self._request_errors(request))
template_name = access[0].name
if template_name == "RED":
template_name = "core_red"
elif template_name == "BLUE":
template_name = "core_blue"
return render_template(f"{template_name}.html", request, data)
return render_template("index.html", request, {})

async def handle_catch(self, request):
return render_template("index.html", request, {})

@check_authorization
async def rest_core(self, request):
Expand Down
6 changes: 5 additions & 1 deletion app/api/v2/__init__.py
Expand Up @@ -3,10 +3,11 @@

def make_app(services):
from .responses import json_request_validation_middleware
from .security import authentication_required_middleware_factory
from .security import authentication_required_middleware_factory, pass_option_middleware

app = web.Application(
middlewares=[
pass_option_middleware,
authentication_required_middleware_factory(services['auth_svc']),
json_request_validation_middleware
]
Expand Down Expand Up @@ -54,4 +55,7 @@ def make_app(services):
from .handlers.contact_api import ContactApi
ContactApi(services).add_routes(app)

from .handlers.payload_api import PayloadApi
PayloadApi(services).add_routes(app)

return app
5 changes: 5 additions & 0 deletions app/api/v2/handlers/contact_api.py
Expand Up @@ -15,6 +15,7 @@ def add_routes(self, app: web.Application):
router = app.router
router.add_get('/contacts/{name}', self.get_contact_report)
router.add_get('/contacts', self.get_available_contact_reports)
router.add_get('/contactlist', self.get_contact_list)

@aiohttp_apispec.docs(tags=['contacts'],
summary='Retrieve a List of Beacons made by Agents to the specified Contact',
Expand Down Expand Up @@ -43,3 +44,7 @@ async def get_contact_report(self, request: web.Request):
async def get_available_contact_reports(self, request: web.Request):
contacts = self._api_manager.get_available_contact_reports()
return web.json_response(contacts)

async def get_contact_list(self, request: web.Request):
contacts = [dict(name=c.name, description=c.description) for c in self._api_manager.contact_svc.contacts]
return web.json_response(contacts)
8 changes: 5 additions & 3 deletions app/api/v2/handlers/health_api.py
Expand Up @@ -19,15 +19,17 @@ def add_routes(self, app: web.Application):
router.add_get('/health', security.authentication_exempt(self.get_health_info))

@aiohttp_apispec.docs(tags=['health'],
summary='Health endpoints returns the status of CALDERA',
description='Returns the status of CALDERA and additional details including versions of system components')
summary='Health endpoints returns the status of Caldera',
description='Returns the status of Caldera and additional details including versions of system components')
@aiohttp_apispec.response_schema(CalderaInfoSchema, 200, description='Includes all loaded plugins and system components.')
async def get_health_info(self, request):
loaded_plugins_sorted = sorted(self._app_svc.get_loaded_plugins(), key=operator.attrgetter('name'))
access = await self._auth_svc.get_permissions(request)

mapping = {
'application': 'CALDERA',
'application': 'Caldera',
'version': app.get_version(),
'access': access[0].name,
'plugins': loaded_plugins_sorted
}

Expand Down
35 changes: 28 additions & 7 deletions app/api/v2/handlers/operation_api.py
Expand Up @@ -8,7 +8,7 @@
from app.api.v2.responses import JsonHttpNotFound
from app.api.v2.schemas.base_schemas import BaseGetAllQuerySchema, BaseGetOneQuerySchema
from app.api.v2.schemas.link_result_schema import LinkResultSchema
from app.objects.c_operation import Operation, OperationSchema, OperationOutputRequestSchema
from app.objects.c_operation import Operation, OperationSchema, OperationSchemaAlt, OperationOutputRequestSchema
from app.objects.secondclass.c_link import LinkSchema


Expand All @@ -21,6 +21,7 @@ def __init__(self, services):
def add_routes(self, app: web.Application):
router = app.router
router.add_get('/operations', self.get_operations)
router.add_get('/operations/summary', self.get_operations_summary)
router.add_get('/operations/{id}', self.get_operation_by_id)
router.add_post('/operations', self.create_operation)
router.add_patch('/operations/{id}', self.update_operation)
Expand All @@ -37,7 +38,7 @@ def add_routes(self, app: web.Application):

@aiohttp_apispec.docs(tags=['operations'],
summary='Retrieve operations',
description='Retrieve all CALDERA operations from memory. Use fields from the '
description='Retrieve all Caldera operations from memory. Use fields from the '
'`BaseGetAllQuerySchema` in the request body to filter.')
@aiohttp_apispec.querystring_schema(BaseGetAllQuerySchema)
@aiohttp_apispec.response_schema(OperationSchema(many=True, partial=True),
Expand All @@ -48,7 +49,7 @@ async def get_operations(self, request: web.Request):

@aiohttp_apispec.docs(tags=['operations'],
summary='Retrieve an operation by operation id',
description='Retrieve one CALDERA operation from memory based on the operation id (String '
description='Retrieve one Caldera operation from memory based on the operation id (String '
'UUID). Use fields from the `BaseGetOneQuerySchema` in the request body to add '
'`include` and `exclude` filters.',
parameters=[{
Expand All @@ -66,8 +67,28 @@ async def get_operation_by_id(self, request: web.Request):
return web.json_response(operation)

@aiohttp_apispec.docs(tags=['operations'],
summary='Create a new CALDERA operation record',
description='Create a new CALDERA operation using the format provided in the '
summary='Retrieve operations (alternate)',
description='Retrieve all Caldera operations from memory, with an alternate selection'
' of properties. Use fields from the `BaseGetAllQuerySchema` in the request'
' body to filter.')
@aiohttp_apispec.querystring_schema(BaseGetAllQuerySchema)
@aiohttp_apispec.response_schema(OperationSchemaAlt(many=True, partial=True),
description='The response is a list of all operations.')
async def get_operations_summary(self, request: web.Request):
remove_props = ['chain', 'host_group', 'source', 'visibility']
operations = await self.get_all_objects(request)
operations_mod = []
for op in operations:
op['agents'] = self._api_manager.get_agents(op)
op['hosts'] = await self._api_manager.get_hosts(op)
for prop in remove_props:
op.pop(prop, None)
operations_mod.append(op)
return web.json_response(operations_mod)

@aiohttp_apispec.docs(tags=['operations'],
summary='Create a new Caldera operation record',
description='Create a new Caldera operation using the format provided in the '
'`OperationSchema`. Required schema fields are as follows: "name", '
'"adversary.adversary_id", "planner.id", and "source.id"')
@aiohttp_apispec.request_schema(OperationSchema)
Expand All @@ -79,7 +100,7 @@ async def create_operation(self, request: web.Request):

@aiohttp_apispec.docs(tags=['operations'],
summary='Update fields within an operation',
description='Update one CALDERA operation in memory based on the operation id (String '
description='Update one Caldera operation in memory based on the operation id (String '
'UUID). The `state`, `autonomous` and `obfuscator` fields in the operation '
'object may be edited in the request body using the `OperationSchema`.',
parameters=[{
Expand All @@ -98,7 +119,7 @@ async def update_operation(self, request: web.Request):

@aiohttp_apispec.docs(tags=['operations'],
summary='Delete an operation by operation id',
description='Delete one CALDERA operation from memory based on the operation id (String '
description='Delete one Caldera operation from memory based on the operation id (String '
'UUID).',
parameters=[{
'in': 'path',
Expand Down
43 changes: 43 additions & 0 deletions app/api/v2/handlers/payload_api.py
@@ -0,0 +1,43 @@
import itertools
import pathlib

import aiohttp_apispec
from aiohttp import web
import marshmallow as ma

from app.api.v2.handlers.base_api import BaseApi
from app.api.v2.schemas.base_schemas import BaseGetAllQuerySchema


class PayloadSchema(ma.Schema):
payloads = ma.fields.List(ma.fields.String())


class PayloadApi(BaseApi):
def __init__(self, services):
super().__init__(auth_svc=services['auth_svc'])
self.data_svc = services['data_svc']
self.file_svc = services['file_svc']

def add_routes(self, app: web.Application):
router = app.router
router.add_get('/payloads', self.get_payloads)

@aiohttp_apispec.docs(tags=['payloads'],
summary='Retrieve payloads',
description='Retrieves all stored payloads.')
@aiohttp_apispec.querystring_schema(BaseGetAllQuerySchema)
@aiohttp_apispec.response_schema(PayloadSchema(),
description='Returns a list of all payloads in PayloadSchema format.')
async def get_payloads(self, request: web.Request):
cwd = pathlib.Path.cwd()
payload_dirs = [cwd / 'data' / 'payloads']
payload_dirs.extend(cwd / 'plugins' / plugin.name / 'payloads'
for plugin in await self.data_svc.locate('plugins') if plugin.enabled)
payloads = {
self.file_svc.remove_xored_extension(p.name)
for p in itertools.chain.from_iterable(p_dir.glob('[!.]*') for p_dir in payload_dirs)
if p.is_file()
}

return web.json_response(list(payloads))

0 comments on commit 9ceb72d

Please sign in to comment.