Skip to content
This repository has been archived by the owner on May 12, 2021. It is now read-only.

METRON-1102: Add support for ingesting cybox URI observables from taxii feeds #689

Closed
wants to merge 5 commits into from

Conversation

cestella
Copy link
Member

@cestella cestella commented Aug 10, 2017

Contributor Comments

There is value in ingesting URIs from taxii feeds and we should provide support to do so.

Pull Request Checklist

Thank you for submitting a contribution to Apache Metron.
Please refer to our Development Guidelines for the complete guide to follow for contributions.
Please refer also to our Build Verification Guidelines for complete smoke testing guides.

In order to streamline the review of the contribution we ask you follow these guidelines and ask you to double check the following:

For all changes:

  • Is there a JIRA ticket associated with this PR? If not one needs to be created at Metron Jira.
  • Does your PR title start with METRON-XXXX where XXXX is the JIRA number you are trying to resolve? Pay particular attention to the hyphen "-" character.
  • Has your PR been rebased against the latest commit within the target branch (typically master)?

For code changes:

  • Have you included steps to reproduce the behavior or problem that is being changed or addressed?

  • Have you included steps or a guide to how the change may be verified and tested manually?

  • Have you ensured that the full suite of tests and checks have been executed in the root metron folder via:

    mvn -q clean integration-test install && build_utils/verify_licenses.sh 
    
  • Have you written or updated unit tests and or integration tests to verify your changes?

  • If adding new dependencies to the code, are these dependencies licensed in a way that is compatible for inclusion under ASF 2.0?

  • Have you verified the basic functionality of the build by building and running locally with Vagrant full-dev environment or the equivalent?

For documentation related changes:

  • Have you ensured that format looks appropriate for the output in which it is rendered by building and verifying the site-book? If not then run the following commands and the verify changes via site-book/target/site/index.html:

    cd site-book
    mvn site
    

Note:

Please ensure that once the PR is submitted, you check travis-ci for build issues and submit an update to your PR as soon as possible.
It is also recommended that travis-ci is set up for your personal repository such that your branches are built there before submitting a pull request.

@cestella
Copy link
Member Author

Testing plan should be the same as here

@@ -38,6 +39,7 @@
import java.util.Map;

public class StixExtractor implements Extractor {
private static final Logger LOG = Logger.getLogger(StixExtractor.class);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Didn't we change how logging worked in METRON-975? @mmiklavc see also #599

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, this ended up starting live as a patch against an older branch that I just made current. I changed the logging to use slf4j now. Good eye, @simonellistonball

@ottobackwards
Copy link
Contributor

So,

I think this is a great addition, but I have some comments.

  • Where is the documentation for the version of Stix and the Version of Cybox metron supports?
  • How is the extractor factored to handle support for other versions?
  • How is the extractor factored to handle JSON if / when stix and cybox change over?
  • Can we handle just Cybox? Should this be factored to support them separately?
  • Where is the documentation for the support in this PR?

@cestella
Copy link
Member Author

Ok, so good questions @ottobackwards . I'll do my best to answer them, but the answer to some of these expands past this PR and to the history of Taxii support for Metron (which was one of the first things we added and thus at a period of time where documentation was scarcer than it is even now ;) )

  • Where is the documentation for the version of Stix and the Version of Cybox metron supports?
    We do not currently document that, the answer is, however, that our support for Stix, cybox and taxii is entirely bound up in the mitre java-stix library. We use the most current version released, which is 1.2.0.2.

  • How is the extractor factored to handle support for other versions?
    The extractor is handled to support other versions only insomuch as the java-stix library can support multiple versions. As this is officially supported by the stix project, I think that it's backwards compatible, but there may be nuance here that I'm missing.

  • How is the extractor factored to handle JSON if / when stix and cybox change over?
    The extractor abstraction works at the level of the object model that the java-stix library provides us rather than doing actual parsing (i.e. we implement support for new types by providing a handler that looks for objects of that type as the output of the parse). If Stix moves to JSON, presumably the library will handle that transparently or we'll need another approach.

  • Can we handle just Cybox? Should this be factored to support them separately?
    We can create handlers for anything the java-stix library can parse, but cybox seems to be common and officially supported by the stix project.

  • Where is the documentation for the support in this PR?
    I added the new URI type to the README.md in metron-data-management. Since that's the scope of this PR, not to document better our taxii/stix/etc support.

Ok, so it's apparent that some of the design decisions around taxii never made it into documentation. A couple of questions for you:

  • Where should that documentation live?
  • Are we unhappy enough about having our abstraction bound to the (from what I can tell only) java library provided by the stix project that you'd like to start a discuss thread about developing a better approach to taxii?

Just a note on the second, we chose that because it was the only game in town other than parsing the XML ourselves and it was the officially supported library. I even looked into that and decided against it as the XML format is extremely complex with lots of referential links that need to get coalesced to handle the blocks of stix that come across.

@ottobackwards
Copy link
Contributor

Can we handle just Cybox

What I mean is, can we import a file that is ONLY cybox observables, without Stix.

Stix supports cybox. But they are separate things.

@ottobackwards
Copy link
Contributor

As for where... over in METRON-777 @mmiklavc is talking about a better documentation area... this may fall into that

@cestella
Copy link
Member Author

cestella commented Aug 10, 2017

Ah, for the moment we only have the StixExtractor. We could MAKE a cybox extractor and it could reuse the handler logic, but we haven't done that. Have you seen people ingesting cybox (or stix for that matter) outside of taxii?

@cestella
Copy link
Member Author

Yeah, it seems to me that we might need something like a location for discussion and description of architectural decisions made.

@ottobackwards
Copy link
Contributor

I would like to see at least the version of Stix and Cybox that is supported documented.

@cestella
Copy link
Member Author

Sure, not a problem. I noted the versions supported in the documentation and linked to the actual schemata for cybox and stix.

@ottobackwards
Copy link
Contributor

+1 by inspection.

@asfgit asfgit closed this in 3d95fdf Aug 11, 2017
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
3 participants