Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Organization vs System controls #11

Open
its-a-lisa-at-work opened this issue Dec 4, 2019 · 1 comment
Open

Organization vs System controls #11

its-a-lisa-at-work opened this issue Dec 4, 2019 · 1 comment

Comments

@its-a-lisa-at-work
Copy link
Contributor

Is it possible to map which controls are organization controls opposed to controls that are system controls?

@jason-callaway
Copy link
Contributor

Yes, but you might be able to get what you want with a query. If there's anything in the description that indicates that it's an organizational control we could do something like:

match (r:regime)-[:HAS*]->(c:control) where c.description contains 'organization-defined' return c.name

On the other hand, it's likely that if there's a bash implementation that references a control we could probably infer that it's a system control:

match (r:regime {name: 'NIST 800-53'})-[:HAS*]->(c:control) with c match (b:baseline)-[*..4]->(c) where b.name ends with '.sh' return distinct(c.name)

Thoughts?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants