Metadata-Version: 2.1
Name: mythic-container
Version: 0.2.0rc11
Summary: Functionality for Mythic Services
Home-page: https://docs.mythic-c2.net/customizing/payload-type-development
Author: @its_a_feature_
Author-email: 
License: BSD3
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Description-Content-Type: text/markdown
License-File: LICENSE.md

# Mythic Payload Type Container

The `mythic_container` library provides the steps for defining and utilizing payload types, c2 profiles, translation containers, webhook containers, and logging containers for Mythic. 
Mythic is a Command and Control (C2) framework for Red Teaming with the code on GitHub (https://github.com/its-a-feature/Mythic) and the Mythic project's documentation on GitBooks (https://docs.mythic-c2.net). 

## Installation

You can install the mythic scripting interface from PyPI:

```
pip install mythic-container
```

## How to use

This container reports to mythic as version "v1.0.0" (PyPi version 0.1.18). Use it with Mythic version 3.0.0.

For the main execution of the heartbeat and service functionality, simply import and start the service:
```
import mythic_container
import [my agent | my c2 profile | my translation container | my webhooks | my loggers]
mythic_container.mythic_service.start_and_run_forever()
```

## Where is the code?

The code for this PyPi package can be found at https://github.com/MythicMeta/Mythic_Container 
