misp-stix2


Namemisp-stix2 JSON
Version 4.0.0 PyPI version JSON
download
home_pagehttps://github.com/MISP/cti-python-stix2
SummaryProduce and consume STIX 2 JSON content
upload_time2024-01-10 07:02:10
maintainerOASIS Cyber Threat Intelligence Technical Committee
docs_urlNone
authorOASIS Cyber Threat Intelligence Technical Committee
requires_python>=3.7,<4.0
licenseBSD
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            |Build_Status| |Coverage| |Version| |Downloads_Badge|

cti-python-stix2
================

This is the MISP core team STIX2 library forked from the `OASIS TC Open Repository <https://www.oasis-open.org/resources/open-repositories/>`__.

This repository provides Python APIs for serializing and de-serializing STIX2
JSON content, along with higher-level APIs for common tasks, including data
markings, versioning, and for resolving STIX IDs across multiple data sources.

For more information, see `the documentation <https://stix2.readthedocs.io/>`__ on ReadTheDocs.

Installation
------------

Install with `pip <https://pip.pypa.io/en/stable/>`__:

.. code-block:: bash

  $ pip install misp-stix2

Note: The library requires Python 3.7+.

PyPI module: `misp-stix2 <https://pypi.org/project/misp-stix2/>`__.

Usage
-----

To create a STIX object, provide keyword arguments to the type's constructor.
Certain required attributes of all objects, such as ``type`` or ``id``,  will
be set automatically if not provided as keyword arguments.

.. code-block:: python

    from stix2 import Indicator

    indicator = Indicator(name="File hash for malware variant",
                          indicator_types=["malicious-activity"],
                          pattern_type="stix",
                          pattern="[file:hashes.md5 = 'd41d8cd98f00b204e9800998ecf8427e']")

To parse a STIX JSON string into a Python STIX object, use ``parse()``. To serialize a STIX object, use ``serialize()``:

.. code-block:: python

    from stix2 import parse

    indicator = parse("""{
        "type": "indicator",
        "spec_version": "2.1",
        "id": "indicator--dbcbd659-c927-4f9a-994f-0a2632274394",
        "created": "2017-09-26T23:33:39.829Z",
        "modified": "2017-09-26T23:33:39.829Z",
        "name": "File hash for malware variant",
        "indicator_types": [
            "malicious-activity"
        ],
        "pattern_type": "stix",
        "pattern_version": "2.1",
        "pattern": "[file:hashes.md5 ='d41d8cd98f00b204e9800998ecf8427e']",
        "valid_from": "2017-09-26T23:33:39.829952Z"
    }""")

    print(indicator.serialize(pretty=True))

For more in-depth documentation, please see `https://stix2.readthedocs.io/ <https://stix2.readthedocs.io/>`__.

STIX 2 Technical Specification Support
--------------------------------------

This version of cti-python-stix2 brings support to `STIX Version 2.1 <https://docs.oasis-open.org/cti/stix/v2.1/os/stix-v2.1-os.html>`__
published on 10 June 2021 currently at the Committee Specification (CS) 03 level, also know as the "OASIS Standard".

The stix2 Python library supports multiple versions of the STIX 2 Technical
Specification. The library will be updated to support new Committee
Specification Drafts (CSDs) as they are released, but modules for these
versions must be imported manually until the CSD reaches CS level. In new
major releases of stix2 the ``import stix2`` implicit import statement
will be updated to automatically load the STIX Objects equivalent to the most
recently supported CS. Please see the `library documentation <https://stix2.readthedocs.io/en/latest/guide/ts_support.html>`__
for details.

Contributing
------------

This is the MISP core team STIX2 library forked from the `OASIS TC Open Repository <https://www.oasis-open.org/resources/open-repositories/>`__.

The contributing rules of this repository is the MISP standard rules bound to the `Developer Certificate of Origin <https://www.misp-project.org/license/>`__.

If you want to contribute, no need to sign a CLA.


Maintainers
~~~~~~~~~~~

TC Open Repository `Maintainers <https://www.oasis-open.org/resources/open-repositories/maintainers-guide>`__
are responsible for oversight of this project's community development
activities, including evaluation of GitHub
`pull requests <https://github.com/oasis-open/cti-python-stix2/blob/master/CONTRIBUTING.md#fork-and-pull-collaboration-model>`__
and `preserving <https://www.oasis-open.org/policies-guidelines/open-repositories#repositoryManagement>`__
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
<https://www.oasis-open.org/resources/open-repositories/maintainers-guide#additionalMaintainers>`__.

.. _currentmaintainers:

**Current Maintainers of this TC Open Repository**

-  `Jason Keirstead <mailto:Jason.Keirstead@ca.ibm.com>`__; GitHub ID:
   https://github.com/JasonKeirstead; WWW: `IBM <http://www.ibm.com/>`__

-  `Emily Ratliff <mailto:Emily.Ratliff@ibm.com>`__; GitHub ID:
   https://github.com/ejratl; WWW: `IBM <http://www.ibm.com/>`__

-  `Rich Piazza <mailto:rpiazza@mitre.org>`__; GitHub ID:
   https://github.com/rpiazza; WWW: `MITRE <http://www.mitre.org/>`__

About OASIS TC Open Repositories
--------------------------------

-  `TC Open Repositories: Overview and Resources <https://www.oasis-open.org/resources/open-repositories/>`__
-  `Frequently Asked Questions <https://www.oasis-open.org/resources/open-repositories/faq>`__
-  `Open Source Licenses <https://www.oasis-open.org/resources/open-repositories/licenses>`__
-  `Contributor License Agreements (CLAs) <https://www.oasis-open.org/resources/open-repositories/cla>`__
-  `Maintainers' Guidelines and Agreement <https://www.oasis-open.org/resources/open-repositories/maintainers-guide>`__

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 <#currentmaintainers>`__. 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.

.. |Build_Status| image:: https://github.com/misp/cti-python-stix2/workflows/cti-python-stix2%20test%20harness/badge.svg
   :target: https://github.com/misp/cti-python-stix2/actions?query=workflow%3A%22cti-python-stix2+test+harness%22
   :alt: Build Status
.. |Coverage| image:: https://codecov.io/gh/misp/cti-python-stix2/branch/main/graph/badge.svg
   :target: https://codecov.io/gh/misp/cti-python-stix2
   :alt: Coverage
.. |Version| image:: https://img.shields.io/pypi/v/misp-stix2.svg?maxAge=3600
   :target: https://pypi.python.org/pypi/misp-stix2/
   :alt: Version
.. |Downloads_Badge| image:: https://img.shields.io/pypi/dm/misp-stix2.svg?maxAge=3600
   :target: https://pypi.python.org/pypi/misp-stix2/
   :alt: Downloads

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/MISP/cti-python-stix2",
    "name": "misp-stix2",
    "maintainer": "OASIS Cyber Threat Intelligence Technical Committee",
    "docs_url": null,
    "requires_python": ">=3.7,<4.0",
    "maintainer_email": "cti-users@lists.oasis-open.org",
    "keywords": "",
    "author": "OASIS Cyber Threat Intelligence Technical Committee",
    "author_email": "cti-users@lists.oasis-open.org",
    "download_url": "https://files.pythonhosted.org/packages/4f/56/76b0c8413ccbb3cc375486cc57b899e2dc863b351604d3120ec5f5b7e0e9/misp_stix2-4.0.0.tar.gz",
    "platform": null,
    "description": "|Build_Status| |Coverage| |Version| |Downloads_Badge|\n\ncti-python-stix2\n================\n\nThis is the MISP core team STIX2 library forked from the `OASIS TC Open Repository <https://www.oasis-open.org/resources/open-repositories/>`__.\n\nThis repository provides Python APIs for serializing and de-serializing STIX2\nJSON content, along with higher-level APIs for common tasks, including data\nmarkings, versioning, and for resolving STIX IDs across multiple data sources.\n\nFor more information, see `the documentation <https://stix2.readthedocs.io/>`__ on ReadTheDocs.\n\nInstallation\n------------\n\nInstall with `pip <https://pip.pypa.io/en/stable/>`__:\n\n.. code-block:: bash\n\n  $ pip install misp-stix2\n\nNote: The library requires Python 3.7+.\n\nPyPI module: `misp-stix2 <https://pypi.org/project/misp-stix2/>`__.\n\nUsage\n-----\n\nTo create a STIX object, provide keyword arguments to the type's constructor.\nCertain required attributes of all objects, such as ``type`` or ``id``,  will\nbe set automatically if not provided as keyword arguments.\n\n.. code-block:: python\n\n    from stix2 import Indicator\n\n    indicator = Indicator(name=\"File hash for malware variant\",\n                          indicator_types=[\"malicious-activity\"],\n                          pattern_type=\"stix\",\n                          pattern=\"[file:hashes.md5 = 'd41d8cd98f00b204e9800998ecf8427e']\")\n\nTo parse a STIX JSON string into a Python STIX object, use ``parse()``. To serialize a STIX object, use ``serialize()``:\n\n.. code-block:: python\n\n    from stix2 import parse\n\n    indicator = parse(\"\"\"{\n        \"type\": \"indicator\",\n        \"spec_version\": \"2.1\",\n        \"id\": \"indicator--dbcbd659-c927-4f9a-994f-0a2632274394\",\n        \"created\": \"2017-09-26T23:33:39.829Z\",\n        \"modified\": \"2017-09-26T23:33:39.829Z\",\n        \"name\": \"File hash for malware variant\",\n        \"indicator_types\": [\n            \"malicious-activity\"\n        ],\n        \"pattern_type\": \"stix\",\n        \"pattern_version\": \"2.1\",\n        \"pattern\": \"[file:hashes.md5 ='d41d8cd98f00b204e9800998ecf8427e']\",\n        \"valid_from\": \"2017-09-26T23:33:39.829952Z\"\n    }\"\"\")\n\n    print(indicator.serialize(pretty=True))\n\nFor more in-depth documentation, please see `https://stix2.readthedocs.io/ <https://stix2.readthedocs.io/>`__.\n\nSTIX 2 Technical Specification Support\n--------------------------------------\n\nThis version of cti-python-stix2 brings support to `STIX Version 2.1 <https://docs.oasis-open.org/cti/stix/v2.1/os/stix-v2.1-os.html>`__\npublished on 10 June 2021 currently at the Committee Specification (CS) 03 level, also know as the \"OASIS Standard\".\n\nThe stix2 Python library supports multiple versions of the STIX 2 Technical\nSpecification. The library will be updated to support new Committee\nSpecification Drafts (CSDs) as they are released, but modules for these\nversions must be imported manually until the CSD reaches CS level. In new\nmajor releases of stix2 the ``import stix2`` implicit import statement\nwill be updated to automatically load the STIX Objects equivalent to the most\nrecently supported CS. Please see the `library documentation <https://stix2.readthedocs.io/en/latest/guide/ts_support.html>`__\nfor details.\n\nContributing\n------------\n\nThis is the MISP core team STIX2 library forked from the `OASIS TC Open Repository <https://www.oasis-open.org/resources/open-repositories/>`__.\n\nThe contributing rules of this repository is the MISP standard rules bound to the `Developer Certificate of Origin <https://www.misp-project.org/license/>`__.\n\nIf you want to contribute, no need to sign a CLA.\n\n\nMaintainers\n~~~~~~~~~~~\n\nTC Open Repository `Maintainers <https://www.oasis-open.org/resources/open-repositories/maintainers-guide>`__\nare responsible for oversight of this project's community development\nactivities, including evaluation of GitHub\n`pull requests <https://github.com/oasis-open/cti-python-stix2/blob/master/CONTRIBUTING.md#fork-and-pull-collaboration-model>`__\nand `preserving <https://www.oasis-open.org/policies-guidelines/open-repositories#repositoryManagement>`__\nopen source principles of openness and fairness. Maintainers are recognized\nand trusted experts who serve to implement community goals and consensus design\npreferences.\n\nInitially, the associated TC members have designated one or more persons to\nserve as Maintainer(s); subsequently, participating community members may\nselect additional or substitute Maintainers, per `consensus agreements\n<https://www.oasis-open.org/resources/open-repositories/maintainers-guide#additionalMaintainers>`__.\n\n.. _currentmaintainers:\n\n**Current Maintainers of this TC Open Repository**\n\n-  `Jason Keirstead <mailto:Jason.Keirstead@ca.ibm.com>`__; GitHub ID:\n   https://github.com/JasonKeirstead; WWW: `IBM <http://www.ibm.com/>`__\n\n-  `Emily Ratliff <mailto:Emily.Ratliff@ibm.com>`__; GitHub ID:\n   https://github.com/ejratl; WWW: `IBM <http://www.ibm.com/>`__\n\n-  `Rich Piazza <mailto:rpiazza@mitre.org>`__; GitHub ID:\n   https://github.com/rpiazza; WWW: `MITRE <http://www.mitre.org/>`__\n\nAbout OASIS TC Open Repositories\n--------------------------------\n\n-  `TC Open Repositories: Overview and Resources <https://www.oasis-open.org/resources/open-repositories/>`__\n-  `Frequently Asked Questions <https://www.oasis-open.org/resources/open-repositories/faq>`__\n-  `Open Source Licenses <https://www.oasis-open.org/resources/open-repositories/licenses>`__\n-  `Contributor License Agreements (CLAs) <https://www.oasis-open.org/resources/open-repositories/cla>`__\n-  `Maintainers' Guidelines and Agreement <https://www.oasis-open.org/resources/open-repositories/maintainers-guide>`__\n\nFeedback\n--------\n\nQuestions or comments about this TC Open Repository's activities should be\ncomposed as GitHub issues or comments. If use of an issue/comment is not\npossible or appropriate, questions may be directed by email to the\nMaintainer(s) `listed above <#currentmaintainers>`__. Please send general\nquestions about TC Open Repository participation to OASIS Staff at\nrepository-admin@oasis-open.org and any specific CLA-related questions\nto repository-cla@oasis-open.org.\n\n.. |Build_Status| image:: https://github.com/misp/cti-python-stix2/workflows/cti-python-stix2%20test%20harness/badge.svg\n   :target: https://github.com/misp/cti-python-stix2/actions?query=workflow%3A%22cti-python-stix2+test+harness%22\n   :alt: Build Status\n.. |Coverage| image:: https://codecov.io/gh/misp/cti-python-stix2/branch/main/graph/badge.svg\n   :target: https://codecov.io/gh/misp/cti-python-stix2\n   :alt: Coverage\n.. |Version| image:: https://img.shields.io/pypi/v/misp-stix2.svg?maxAge=3600\n   :target: https://pypi.python.org/pypi/misp-stix2/\n   :alt: Version\n.. |Downloads_Badge| image:: https://img.shields.io/pypi/dm/misp-stix2.svg?maxAge=3600\n   :target: https://pypi.python.org/pypi/misp-stix2/\n   :alt: Downloads\n",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "Produce and consume STIX 2 JSON content",
    "version": "4.0.0",
    "project_urls": {
        "Bug Tracker": "https://github.com/oasis-open/cti-python-stix2/issues/",
        "Documentation": "https://stix2.readthedocs.io/",
        "Homepage": "https://github.com/MISP/cti-python-stix2",
        "Repository": "https://github.com/MISP/cti-python-stix2",
        "Source Code": "https://github.com/oasis-open/cti-python-stix2/"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f313e9e0456edd89e9f51dce8770127e3eb44caeacd35a2abd9e4ba2e54e61f8",
                "md5": "9d1452c9365b7809e29575126f693435",
                "sha256": "630958a15d141a8b02fe04a854a4231619b9c64ac8f719f312c76a21e0837497"
            },
            "downloads": -1,
            "filename": "misp_stix2-4.0.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "9d1452c9365b7809e29575126f693435",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7,<4.0",
            "size": 439525,
            "upload_time": "2024-01-10T07:02:04",
            "upload_time_iso_8601": "2024-01-10T07:02:04.787284Z",
            "url": "https://files.pythonhosted.org/packages/f3/13/e9e0456edd89e9f51dce8770127e3eb44caeacd35a2abd9e4ba2e54e61f8/misp_stix2-4.0.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4f5676b0c8413ccbb3cc375486cc57b899e2dc863b351604d3120ec5f5b7e0e9",
                "md5": "37ba4c96219d79791300b2f3e9325fa8",
                "sha256": "cde16c28df54a821eb5731314c87de1f67d6bf963a503a585fb155af71e1d437"
            },
            "downloads": -1,
            "filename": "misp_stix2-4.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "37ba4c96219d79791300b2f3e9325fa8",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7,<4.0",
            "size": 329338,
            "upload_time": "2024-01-10T07:02:10",
            "upload_time_iso_8601": "2024-01-10T07:02:10.444416Z",
            "url": "https://files.pythonhosted.org/packages/4f/56/76b0c8413ccbb3cc375486cc57b899e2dc863b351604d3120ec5f5b7e0e9/misp_stix2-4.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-10 07:02:10",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "MISP",
    "github_project": "cti-python-stix2",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "tox": true,
    "lcname": "misp-stix2"
}
        
Elapsed time: 0.16980s