{
"info": {
"author": "OASIS Cyber Threat Intelligence Technical Committee",
"author_email": "cti-users@lists.oasis-open.org",
"bugtrack_url": null,
"classifiers": [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Security"
],
"description": "|Build_Status| |Coverage| |Version| |Downloads_Badge| |Documentation_Status|\n\ncti-python-stix2\n================\n\nThis is an `OASIS TC Open Repository `__.\nSee the `Governance <#governance>`__ section for more information.\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 `__ on ReadTheDocs.\n\nInstallation\n------------\n\nInstall with `pip `__:\n\n.. code-block:: bash\n\n $ pip install 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 labels=[\"malicious-activity\"],\n pattern=\"[file:hashes.md5 = 'd41d8cd98f00b204e9800998ecf8427e']\")\n\nTo parse a STIX JSON string into a Python STIX object, use ``parse()``:\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\": \"[file:hashes.md5 ='d41d8cd98f00b204e9800998ecf8427e']\",\n \"valid_from\": \"2017-09-26T23:33:39.829952Z\"\n }\"\"\")\n\n print(indicator)\n\nFor more in-depth documentation, please see `https://stix2.readthedocs.io/ `__.\n\nSTIX 2.X Technical Specification Support\n----------------------------------------\n\nThis version of python-stix2 brings initial support to STIX 2.1 currently at the\nCSD level. The intention is to help debug components of the library and also\ncheck for problems that should be fixed in the specification.\n\nThe `stix2` Python library is built to support multiple versions of the STIX\nTechnical Specification. With every major release of stix2 the ``import stix2``\nstatement will automatically load the SDO/SROs equivalent to the most recent\nsupported 2.X Committee Specification. Please see the library documentation for\nmore details.\n\nGovernance\n----------\n\nThis GitHub public repository (**https://github.com/oasis-open/cti-python-stix2**) was\n`proposed `__ and\n`approved `__\n[`bis `__] by the\n`OASIS Cyber Threat Intelligence (CTI) TC `__\nas an `OASIS TC Open Repository `__\nto support development of open source resources related to Technical Committee work.\n\nWhile this TC Open Repository remains associated with the sponsor TC, its\ndevelopment priorities, leadership, intellectual property terms, participation\nrules, and other matters of governance are `separate and distinct\n`__\nfrom the OASIS TC Process and related policies.\n\nAll contributions made to this TC Open Repository are subject to open\nsource license terms expressed in the `BSD-3-Clause License `__.\nThat license was selected as the declared `\"Applicable License\" `__\nwhen the TC Open Repository was created.\n\nAs documented in `\"Public Participation Invited\n`__\",\ncontributions to this OASIS TC Open Repository are invited from all parties,\nwhether affiliated with OASIS or not. Participants must have a GitHub account,\nbut no fees or OASIS membership obligations are required. Participation is\nexpected to be consistent with the `OASIS TC Open Repository Guidelines and Procedures\n`__,\nthe open source `LICENSE `__\ndesignated for this particular repository, and the requirement for an\n`Individual Contributor License Agreement `__\nthat governs intellectual property.\n\nMaintainers\n~~~~~~~~~~~\n\nTC Open Repository `Maintainers `__\nare responsible for oversight of this project's community development\nactivities, including evaluation of GitHub\n`pull requests `__\nand `preserving `__\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`__.\n\n.. _currentmaintainers:\n\n**Current Maintainers of this TC Open Repository**\n\n- `Chris Lenk `__; GitHub ID:\n https://github.com/clenk/; WWW: `MITRE Corporation `__\n\n- `Emmanuelle Vargas-Gonzalez `__; GitHub ID:\n https://github.com/emmanvg/; WWW: `MITRE\n Corporation `__\n\n- `Jason Keirstead `__; GitHub ID:\n https://github.com/JasonKeirstead; WWW: `IBM `__\n\nAbout OASIS TC Open Repositories\n--------------------------------\n\n- `TC Open Repositories: Overview and Resources `__\n- `Frequently Asked Questions `__\n- `Open Source Licenses `__\n- `Contributor License Agreements (CLAs) `__\n- `Maintainers' Guidelines and Agreement `__\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://travis-ci.org/oasis-open/cti-python-stix2.svg?branch=master\n :target: https://travis-ci.org/oasis-open/cti-python-stix2\n :alt: Build Status\n.. |Coverage| image:: https://codecov.io/gh/oasis-open/cti-python-stix2/branch/master/graph/badge.svg\n :target: https://codecov.io/gh/oasis-open/cti-python-stix2\n :alt: Coverage\n.. |Version| image:: https://img.shields.io/pypi/v/stix2.svg?maxAge=3600\n :target: https://pypi.python.org/pypi/stix2/\n :alt: Version\n.. |Downloads_Badge| image:: https://img.shields.io/pypi/dm/stix2.svg?maxAge=3600\n :target: https://pypi.python.org/pypi/stix2/\n :alt: Downloads\n.. |Documentation_Status| image:: https://readthedocs.org/projects/stix2/badge/?version=latest\n :target: https://stix2.readthedocs.io/en/latest/?badge=latest\n :alt: Documentation Status\n\n\n",
"description_content_type": "text/x-rst",
"docs_url": null,
"download_url": "",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "https://oasis-open.github.io/cti-documentation/",
"keywords": "stix stix2 json cti cyber threat intelligence",
"license": "BSD",
"maintainer": "Chris Lenk, Emmanuelle Vargas-Gonzalez",
"maintainer_email": "clenk@mitre.org, emmanuelle@mitre.org",
"name": "stix2",
"package_url": "https://pypi.org/project/stix2/",
"platform": "",
"project_url": "https://pypi.org/project/stix2/",
"project_urls": {
"Bug Tracker": "https://github.com/oasis-open/cti-python-stix2/issues/",
"Documentation": "https://stix2.readthedocs.io/",
"Homepage": "https://oasis-open.github.io/cti-documentation/",
"Source Code": "https://github.com/oasis-open/cti-python-stix2/"
},
"release_url": "https://pypi.org/project/stix2/1.2.1/",
"requires_dist": [
"python-dateutil",
"pytz",
"requests",
"simplejson",
"six",
"stix2-patterns",
"haversine; extra == 'semantic'",
"pyjarowinkler; extra == 'semantic'",
"taxii2-client; extra == 'taxii'"
],
"requires_python": "",
"summary": "Produce and consume STIX 2 JSON content",
"version": "1.2.1"
},
"last_serial": 5986471,
"releases": {
"0.0.1": [
{
"comment_text": "",
"digests": {
"md5": "6ba16619df4d02f59b393b85050a5f15",
"sha256": "b35841a81a37ba66b197652432d43bb113164d98a1f906ebe3d80a37aa496ef2"
},
"downloads": -1,
"filename": "stix2-0.0.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "6ba16619df4d02f59b393b85050a5f15",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 17582,
"upload_time": "2017-02-24T18:16:42",
"url": "https://files.pythonhosted.org/packages/a3/cd/862754692bc3b39046f5354edc772a37d1cb9a926c938422435c77b8014f/stix2-0.0.1-py2.py3-none-any.whl"
}
],
"0.1.0": [
{
"comment_text": "",
"digests": {
"md5": "92294c6f750f4391e5107d80c4ddb249",
"sha256": "350c494fcabe8a92b176c9a92a24b8f83c0f712094809258e1fbaf73aa5303a3"
},
"downloads": -1,
"filename": "stix2-0.1.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "92294c6f750f4391e5107d80c4ddb249",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 51421,
"upload_time": "2017-05-22T15:56:33",
"url": "https://files.pythonhosted.org/packages/8e/92/f75dee07cf954618d352c60e7e03607da4da5afced3a445bc8b9ceff02eb/stix2-0.1.0-py2.py3-none-any.whl"
}
],
"0.2.0": [
{
"comment_text": "",
"digests": {
"md5": "a5973c26d4f455503f493f84aabe5c4f",
"sha256": "4e015a8b811230f0f522ef3e84b29e5c4ea4ac7f9cac2865a0923094a6bc90f4"
},
"downloads": -1,
"filename": "stix2-0.2.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "a5973c26d4f455503f493f84aabe5c4f",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 59927,
"upload_time": "2017-05-31T15:30:24",
"url": "https://files.pythonhosted.org/packages/01/a4/19cc73dd0b60cb81401aa96fef975943186f0257bd3161ac87efd4bbdb65/stix2-0.2.0-py2.py3-none-any.whl"
}
],
"0.3.0": [
{
"comment_text": "",
"digests": {
"md5": "5d2266eb614fc5c5dc7bc29aab52020a",
"sha256": "e7fdd4edc406defc191c0657c92e59ec5cee2babb355a72ff36c2421030e8e2d"
},
"downloads": -1,
"filename": "stix2-0.3.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "5d2266eb614fc5c5dc7bc29aab52020a",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 109113,
"upload_time": "2017-10-06T19:53:26",
"url": "https://files.pythonhosted.org/packages/55/33/140c78f840e6c7dbb47f9b2e508bc3a16eed33a2b6aadd3fb7bf41aef3f6/stix2-0.3.0-py2.py3-none-any.whl"
}
],
"0.4.0": [
{
"comment_text": "",
"digests": {
"md5": "fc01475ac7c6a0ae89497da057058be7",
"sha256": "b81966f99a060e0e278dbcbb8fa9ce0796ec091ee4b7b34b8b5c27c146f6bfb5"
},
"downloads": -1,
"filename": "stix2-0.4.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "fc01475ac7c6a0ae89497da057058be7",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 58360,
"upload_time": "2017-11-13T21:55:14",
"url": "https://files.pythonhosted.org/packages/4e/48/83a707e8891561fa25be7a1a52d7f57fb0df835cd6632603b8ff73f5964b/stix2-0.4.0-py2.py3-none-any.whl"
}
],
"0.5.1": [
{
"comment_text": "",
"digests": {
"md5": "50aa67100fd64c7671c06dd21f02077b",
"sha256": "2682487e6b9fdffe458ed9b4ee3e2a57d841f0dc958dac32a372b8e5fc25c30f"
},
"downloads": -1,
"filename": "stix2-0.5.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "50aa67100fd64c7671c06dd21f02077b",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 61955,
"upload_time": "2018-03-06T17:07:57",
"url": "https://files.pythonhosted.org/packages/5a/68/9395ed1c1947c2daf8bcc2c00ea9c1f660548ba145ed533aae1852a9a8a7/stix2-0.5.1-py2.py3-none-any.whl"
}
],
"1.0.0": [
{
"comment_text": "",
"digests": {
"md5": "929303ed0b0c4a8c890a9c7c484abcca",
"sha256": "a3f83318e45f87b4629a18290559c3bef4bb69e7dc98718c2ffd603d5bb0b73c"
},
"downloads": -1,
"filename": "stix2-1.0.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "929303ed0b0c4a8c890a9c7c484abcca",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 67238,
"upload_time": "2018-04-16T19:18:42",
"url": "https://files.pythonhosted.org/packages/1a/23/4259bfc46cfd0ea3e4b72f6496aca7cf44a62e84f8799eb7521e54d978b2/stix2-1.0.0-py2.py3-none-any.whl"
}
],
"1.0.1": [
{
"comment_text": "",
"digests": {
"md5": "20c2b4b97260f757a62d760a140dfaab",
"sha256": "0585333e7b5dcc9de96aea9140b12903c93de1514dae8f26529d1680e4cbf8bc"
},
"downloads": -1,
"filename": "stix2-1.0.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "20c2b4b97260f757a62d760a140dfaab",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 63442,
"upload_time": "2018-04-27T20:55:45",
"url": "https://files.pythonhosted.org/packages/10/93/fc1ae13a8967654d80a18f712400024e85ec2b08cf76f0ef3dab45dde204/stix2-1.0.1-py2.py3-none-any.whl"
}
],
"1.0.2": [
{
"comment_text": "",
"digests": {
"md5": "22d4cda047aa2ffea45a8c1f072579d2",
"sha256": "42bbcab020ac20a4e98e6fca7473011a866f31db273581d20748daa4902949d9"
},
"downloads": -1,
"filename": "stix2-1.0.2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "22d4cda047aa2ffea45a8c1f072579d2",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 63819,
"upload_time": "2018-05-18T17:08:01",
"url": "https://files.pythonhosted.org/packages/a8/d3/b261fa6643fe2761b0fece2a54d7854e5ab1da1c96cab1f911a909855767/stix2-1.0.2-py2.py3-none-any.whl"
}
],
"1.0.3": [
{
"comment_text": "",
"digests": {
"md5": "96e26aee6a1e6e2ab2d4f828782b7e22",
"sha256": "4bb1095de3cc6ccb2f6046441be23b303045d8c1b88da4e4191eb477e5ae9167"
},
"downloads": -1,
"filename": "stix2-1.0.3-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "96e26aee6a1e6e2ab2d4f828782b7e22",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 71608,
"upload_time": "2018-10-31T18:19:50",
"url": "https://files.pythonhosted.org/packages/ac/dd/abdc2e5ad82da44a5d1056270cb5bdc936ea8a2d33da49db64f9cc26ea9a/stix2-1.0.3-py2.py3-none-any.whl"
}
],
"1.0.4": [
{
"comment_text": "",
"digests": {
"md5": "ee5e85d87435066bfda7151400c6c5e5",
"sha256": "fa44e3b9fcc66cbfe25a1b3b58edb5921c7d8d0c1fca9a8cebde2137d7e4af63"
},
"downloads": -1,
"filename": "stix2-1.0.4-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "ee5e85d87435066bfda7151400c6c5e5",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 71570,
"upload_time": "2018-11-15T19:03:55",
"url": "https://files.pythonhosted.org/packages/c2/99/5409804ed5fb9b3a9be6581340a118fe3835f5ca25752ef41a0cba1df4e2/stix2-1.0.4-py2.py3-none-any.whl"
}
],
"1.1.0": [
{
"comment_text": "",
"digests": {
"md5": "5e4e8e9059683eeda006c3e1ebf49fc2",
"sha256": "d9ce96bf3dbc8997f1148985121fa1d6a60d31cd1190544d67dc391c1fc9c4ca"
},
"downloads": -1,
"filename": "stix2-1.1.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "5e4e8e9059683eeda006c3e1ebf49fc2",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 257239,
"upload_time": "2018-12-11T19:20:29",
"url": "https://files.pythonhosted.org/packages/d5/a9/6dc090febdf47e0bddf5d3364bc1983619829dbd8a2d102a3e7df7242a0b/stix2-1.1.0-py2.py3-none-any.whl"
}
],
"1.1.1": [
{
"comment_text": "",
"digests": {
"md5": "6726707eb7c4977ea9ad8f437c894e61",
"sha256": "9c02a5f31a67e7d085e88e915b665f315827155988b92b23904452c04384c108"
},
"downloads": -1,
"filename": "stix2-1.1.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "6726707eb7c4977ea9ad8f437c894e61",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 257540,
"upload_time": "2019-01-11T19:33:26",
"url": "https://files.pythonhosted.org/packages/16/44/29c3e23d7488a79b0e14a09a5af0b28b01cca08de99770fe4748c4c8a887/stix2-1.1.1-py2.py3-none-any.whl"
}
],
"1.1.2": [
{
"comment_text": "",
"digests": {
"md5": "3a05ebca4893f60f424f97c9adab3f06",
"sha256": "ed128e2c5a3eba8ac59d21ff72d8166a74fad37431412c25cf74192fad2af1a0"
},
"downloads": -1,
"filename": "stix2-1.1.2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "3a05ebca4893f60f424f97c9adab3f06",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 256729,
"upload_time": "2019-02-13T15:42:56",
"url": "https://files.pythonhosted.org/packages/9d/94/853c98f111894a717d5ac42e7efdbb0a43dd4be44309acd918b19e6bdfb6/stix2-1.1.2-py2.py3-none-any.whl"
}
],
"1.1.3": [
{
"comment_text": "",
"digests": {
"md5": "ee437b6829480304304b86b048be1b65",
"sha256": "5e37f2d4ac5a52c10912e56dbfb8f587d0db2acce2d14fe3afd2968215d92e63"
},
"downloads": -1,
"filename": "stix2-1.1.3-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "ee437b6829480304304b86b048be1b65",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 261620,
"upload_time": "2019-08-12T17:51:18",
"url": "https://files.pythonhosted.org/packages/a9/c5/2fe03e0acc18eb943d7b7939d17b9c30d436e2abbd9c88aaa36e02269297/stix2-1.1.3-py2.py3-none-any.whl"
}
],
"1.2.0": [
{
"comment_text": "",
"digests": {
"md5": "6846eb7c0861cf773033941201364554",
"sha256": "2c7b3e9f65e3b0877ed1cf4887c649a67c4125e6b6fcfb9f4fe26283d64791ee"
},
"downloads": -1,
"filename": "stix2-1.2.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "6846eb7c0861cf773033941201364554",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 106624,
"upload_time": "2019-09-25T20:05:52",
"url": "https://files.pythonhosted.org/packages/e1/f1/660b46e279a5b5a0b38dc91e1947117abdf9e8a0baf923ef29795ca1fcbe/stix2-1.2.0-py2.py3-none-any.whl"
}
],
"1.2.1": [
{
"comment_text": "",
"digests": {
"md5": "8a3b3dab3112d260173f6ce2a9e40693",
"sha256": "9147129047cc057b797925efde492b37f5c7ced67cd816902271a4f702d6ac6f"
},
"downloads": -1,
"filename": "stix2-1.2.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "8a3b3dab3112d260173f6ce2a9e40693",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 106931,
"upload_time": "2019-10-16T21:25:40",
"url": "https://files.pythonhosted.org/packages/5c/8b/2a500bf34289aff01638c3b7ca496ab4628de6ddb2cf4d4c188d1127b3d1/stix2-1.2.1-py2.py3-none-any.whl"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "8a3b3dab3112d260173f6ce2a9e40693",
"sha256": "9147129047cc057b797925efde492b37f5c7ced67cd816902271a4f702d6ac6f"
},
"downloads": -1,
"filename": "stix2-1.2.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "8a3b3dab3112d260173f6ce2a9e40693",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 106931,
"upload_time": "2019-10-16T21:25:40",
"url": "https://files.pythonhosted.org/packages/5c/8b/2a500bf34289aff01638c3b7ca496ab4628de6ddb2cf4d4c188d1127b3d1/stix2-1.2.1-py2.py3-none-any.whl"
}
]
}