-
Notifications
You must be signed in to change notification settings - Fork 611
[New Rule] Attempt to Modify or Delete Okta Application Sign On Policy #10
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
Merged
threat-punter
merged 6 commits into
elastic:main
from
threat-punter:attempt-to-modify-or-delete-okta-application-sign-on-policy
Jul 2, 2020
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
4d23511
Add okta rule for policy modification/delete
threat-punter 4902ed7
Update rule name
threat-punter f66df16
Update rules/okta/okta_attempt_to_modify_or_delete_application_sign_o…
threat-punter 8b3852c
Add event.module value to query
threat-punter 551d25c
Update okta_attempt_to_modify_or_delete_application_sign_on_policy.toml
threat-punter c342211
Update rules/okta/okta_attempt_to_modify_or_delete_application_sign_o…
threat-punter File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
35 changes: 35 additions & 0 deletions
35
rules/okta/okta_attempt_to_modify_or_delete_application_sign_on_policy.toml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,35 @@ | ||
| [metadata] | ||
| creation_date = "2020/07/01" | ||
| ecs_version = ["1.5.0"] | ||
| maturity = "production" | ||
| updated_date = "2020/07/01" | ||
|
|
||
| [rule] | ||
| author = ["Elastic"] | ||
| description = """ | ||
| An adversary may attempt to modify or delete the sign on policy for an Okta application in order to remove or weaken an | ||
| organization's security controls. | ||
| """ | ||
| false_positives = [ | ||
| """ | ||
| Consider adding exceptions to this rule to filter false positives if sign on policies for Okta applications are | ||
| regularly modified or deleted in your organization. | ||
| """, | ||
| ] | ||
| index = ["filebeat-*"] | ||
| language = "kuery" | ||
| license = "Elastic License" | ||
| name = "Modification or Removal of an Okta Application Sign-On Policy" | ||
| references = [ | ||
| "https://developer.okta.com/docs/reference/api/system-log/", | ||
| "https://developer.okta.com/docs/reference/api/event-types/", | ||
| ] | ||
| risk_score = 47 | ||
| rule_id = "cd16fb10-0261-46e8-9932-a0336278cdbe" | ||
| severity = "medium" | ||
| tags = ["Elastic", "Okta"] | ||
| type = "query" | ||
|
|
||
| query = ''' | ||
| event.module:okta and event.dataset:okta.system and event.action:(application.policy.sign_on.update or application.policy.sign_on.rule.delete) | ||
| ''' | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.