Produce and consume OpenC2 JSON messages
Project description
Lycan
Lycan is an implementation of the OpenC2 OASIS standard for command and control messaging. The current implementation is based on the Language Specification v1.0.
Given the influence of STIX/CyBoX on OpenC2, this library is heavily based on the STIX 2 Python API internals. Property validation and object extension support aligns with STIX2 conventions and OpenC2 custom properties also support stix2 properties.
Installation
Install with pip:
$ pip install openc2
Usage
import openc2
import stix2
# encode
cmd = openc2.v10.Command(
action="deny",
target=openc2.v10.IPv4Address(ipv4_net="1.2.3.4"),
args=openc2.v10.Args(response_requested="complete"),
)
msg = cmd.serialize()
# decode
cmd = openc2.parse(msg)
if cmd.action == "deny" and cmd.target.type == "ipv4_net":
if cmd.args.response_requested == "complete":
resp = openc2.v10.Response(status=200)
msg = resp.serialize()
# custom actuator
@openc2.v10.CustomActuator(
"x-acme-widget",
[
("name", openc2.properties.StringProperty(required=True)),
("version", stix2.properties.FloatProperty()),
],
)
class AcmeWidgetActuator(object):
def __init__(self, version=None, **kwargs):
if version and version < 1.0:
raise ValueError("'%f' is not a supported version." % version)
widget = AcmeWidgetActuator(name="foo", version=1.1)
OASIS TC Open Repository: openc2-lycan-python
This GitHub public repository ( https://github.com/oasis-open/openc2-lycan-python ) was created at the request of the OASIS Open Command and Control (OpenC2) TC as an OASIS TC Open Repository to support development of open source resources related to Technical Committee work.
While this TC Open Repository remains associated with the sponsor TC, its development priorities, leadership, intellectual property terms, participation rules, and other matters of governance are separate and distinct from the OASIS TC Process and related policies.
All contributions made to this TC Open Repository are subject to open source license terms expressed in the MIT License. That license was selected as the declared "Applicable License" when the TC Open Repository was created.
As documented in "Public Participation Invited", contributions to this OASIS TC Open Repository are invited from all parties, whether affiliated with OASIS or not. Participants must have a GitHub account, but no fees or OASIS membership obligations are required. Participation is expected to be consistent with the OASIS TC Open Repository Guidelines and Procedures, the open source LICENSE designated for this particular repository, and the requirement for an Individual Contributor License Agreement that governs intellectual property.
Statement of Purpose
Statement of Purpose for this OASIS TC Open Repository (openc2-lycan-python) as proposed and approved [bis] by the TC:
The purpose of this OASIS TC Open repository is to develop and maintain a python implementation of OpenC2, and to provide a python codebase to facilitate other prototype efforts. The python library is designed to support transformations between data-interchange formats (such as JSON) and python language objects.
The OASIS OpenC2 Technical Committee was chartered to address matters as they pertain to command and control of cyber defense technologies, and to maintain a library of prototype implementations.
Additions to Statement of Purpose
Repository Maintainers may include here any clarifications — any additional sections, subsections, and paragraphs that the Maintainer(s) wish to add as descriptive text, reflecting (sub-) project status, milestones, releases, modifications to statement of purpose, etc. The project Maintainers will create and maintain this content on behalf of the participants.
Maintainers
TC Open Repository Maintainers are responsible for oversight of this project's community development activities, including evaluation of GitHub pull requests and preserving open source principles of openness and fairness. Maintainers are recognized and trusted experts who serve to implement community goals and consensus design preferences.
Initially, the associated TC members have designated one or more persons to serve as Maintainer(s); subsequently, participating community members may select additional or substitute Maintainers, per consensus agreements.
Current Maintainers of this TC Open Repository
- Michael Stair; GitHub ID: https://github.com/mstair/; WWW: AT&T
- Zachary Gorak; GitHub ID: https://github.com/twodayslate/; WWW: EverWatch
Feedback
Questions or comments about this TC Open Repository's activities should be composed as GitHub issues or comments. If use of an issue/comment is not possible or appropriate, questions may be directed by email to the Maintainer(s) listed above. Please send general questions about TC Open Repository participation to OASIS Staff at repository-admin@oasis-open.org and any specific CLA-related questions to repository-cla@oasis-open.org.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file sim_openc2-1.0.0.tar.gz
.
File metadata
- Download URL: sim_openc2-1.0.0.tar.gz
- Upload date:
- Size: 27.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1a50ea595e835ae175b84d66ccc03ea194aa281353fbfde98995469144b01c30 |
|
MD5 | a0482c51bb82f9d9607a9f45d88c33a7 |
|
BLAKE2b-256 | 215327228bb3bd14c6aa33981eca002c34ae7c06f3e35baa9d9ff7fd33a68387 |
File details
Details for the file sim_openc2-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: sim_openc2-1.0.0-py3-none-any.whl
- Upload date:
- Size: 31.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e53cc860979a34751660a136aa902442a00e52d53f87d24898728742cb6abece |
|
MD5 | 03a3219d3bf2a8eebaf18a969b791487 |
|
BLAKE2b-256 | 3cb2b36e2c4e52a2d411d31e15e6fc8800f786b32ca7361f4ca6a9bceb939462 |