This is an OASIS TC Open Repository. See the Governance section for more information.
The pattern-matcher is a prototype software tool for matching STIX Observed Data content against patterns used in STIX Indicators. The matcher accepts a pattern and one or more timestamped observations, and determines whether the observations match the criteria specified by the pattern. The purpose of this tool is to evaluate examples and test cases which implement the patterning specification, as a form of executable documentation and to verify patterns express the desired criteria.
- Python 2.7 or 3.4+
- ANTLR Python Runtime (4.7+)
- typing
- https://pypi.python.org/pypi/typing (Python 3.4)
- python-dateutil (https://dateutil.readthedocs.io/en/stable/)
- six (https://six.readthedocs.io/)
- (For running tests) - pytest (http://pytest.org/latest/getting-started.html)
To install pattern-matcher, first install all required dependencies,
then run python setup.py install
in the root of this repository.
Installing the package creates a stix2-matcher
script:
$ stix2-matcher -h usage: stix2-matcher [-h] -p PATTERNS -f FILE [-e ENCODING] [-v] Match STIX Patterns to STIX Observed Data optional arguments: -h, --help show this help message and exit -p PATTERNS, --patterns PATTERNS Specify a file containing STIX Patterns, one per line. -f FILE, --file FILE A file containing JSON list of STIX observed-data SDOs to match against. -e ENCODING, --encoding ENCODING Set encoding used for reading observation and pattern files. Must be an encoding name Python understands. Default is utf8. -v, --verbose Be verbose
The STIX Pattern Matcher’s test suite can be run with pytest.
The ANTLR pattern grammar is maintained in the stix2-json-schemas repository. If the grammar changes, the code in this repository should be updated to match. To do so, use the Java ANTLR package to generate new Python source files. (The .jar file is not needed for normal use of the validator).
Download antlr-4.7-complete.jar from http://www.antlr.org/download/
Clone the stix2-json-schemas repository or download the STIXPattern.g4 file.
Change to the directory containing the STIXPattern.g4 file.
Run the following command
$ java -jar "/path/to/antlr-4.7-complete.jar" -Dlanguage=Python2 STIXPattern.g4 -o /path/to/cti-pattern-matcher/stix2matcher/grammars
Commit the resulting files to git.
This GitHub public repository ( https://github.com/oasis-open/cti-pattern-matcher ) was proposed and approved [bis] by the OASIS Cyber Threat Intelligence (CTI) 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 BSD-3-Clause 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.
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
- Chris Lenk; GitHub ID: https://github.com/clenk/; WWW: MITRE
- Ivan Kirillov; GitHub ID: https://github.com/ikiril01/; WWW: MITRE
- Jason Keirstead; GitHub ID: https://github.com/JasonKeirstead; WWW: IBM
- TC Open Repositories - Overview and Resources
- Frequently Asked Questions
- Open Source Licenses
- Contributor License Agreements (CLAs)
- Maintainers’ Guidelines and Agreement
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 Open Repository participation to OASIS Staff at [email protected] and any specific CLA-related questions to [email protected].