-
Notifications
You must be signed in to change notification settings - Fork 190
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
Support new compliance groups HIPAA and NIST 800 53 #1448
Comments
Proposal
|
Update Today I have been researching what these two new regulations that we have to support are and what they are intended for. I have added these two new regulations as extensions: And I have added them to the Overview general in the Regulatory Compliance panel: Since at the moment we do not have the API calls to obtain the requirements, I have fake the answer to check that the requirements selector works: const response = {
"body": {
"error": 0,
"data": {
"items": [
"AU.3",
"IA.10"
],
"totalItems": 2
}
}
} And at the moment it looks like this |
Update Today I added support for these two new regulations in the agents overview. I have created fake alerts to index data on Elasticsearch and see visualizations on dashboards: {"timestamp":"2019-05-29T10:48:25.8+0000","rule":{"level":3,"description":"Test Alert HIPAA","id":"9999","firedtimes":1,"mail":false,"groups":["syslog","sudo"],"pci_dss":["10.2.5","10.2.2"],"gpg13":["7.6","7.8","7.13"],"gdpr":["IV_32.2"],"hipaa":["164.312.b"]},"agent":{"id":"001","name":"master"},"manager":{"name":"master"},"id":"1557820890.267954","cluster":{"name":"wazuh","node":"node01"},"full_log":"May 29 07:21:24 localhost sudo: vagrant : TTY=pts/1 ; PWD=/home/vagrant ; USER=root ; COMMAND=/bin/su","predecoder":{"program_name":"sudo","timestamp":"May 29 07:21:24","hostname":"localhost"},"decoder":{"parent":"sudo","name":"sudo","ftscomment":"First time user executed the sudo command"},"data":{"srcuser":"vagrant","dstuser":"root","tty":"pts/1","pwd":"/home/vagrant","command":"/bin/su"},"location":"/var/log/secure"} On the other hand, I've added the possibility of filtering by these regulations in the management > rules search filter bar: At the moment this issue is blocked until the API requirements calls are available, and the rules add these new fields to the alerts. In that moment we will change the fake data for the real implementations. |
Update Today I have tested the new endpoints |
This issue is related to:
App must consider new groups that are being added to the ruleset:
Furthermore, Elastic templates should be reviewed to fit the new format.
The text was updated successfully, but these errors were encountered: