- Access exclusive content
- Connect with peers
- Share your expertise
- Find support resources
Enhanced Security Measures in Place: To ensure a safer experience, we’ve implemented additional, temporary security measures for all users.
09-13-2019 03:46 AM - last edited on 09-02-2020 10:20 AM by kwadsack
I am trying to write a custom query to get the unauthorized access details or Access denied details captured and after a certain number of attempts is there it will alert.
I am referring to the mentioned article : ( Example: Authorization Failures )
I need to capture this in cloudtrail logs:
{ ($.errorCode = "*UnauthorizedOperation") || ($.errorCode = "AccessDenied*") }
I used this Custom Redlock Query:
event where cloud.type = 'aws' AND json.rule = (( $.errorCode = "*UnauthorizedOperation") )
However, I am not getting the desired result.
09-16-2019 09:15 AM
Are you looking generically for errorCode? Otherwise, specifying a specific operation would help the auto help to determine what you are looking for. Also, you will need to specify a operator for errorCode such as contains/does not contain, etc.
Thanks,
Eddie
09-13-2019 07:45 AM
I think this should work for you:
event where cloud.type = 'aws' AND json.rule = errorCode contains UnauthorizedOperation or errorCode contains AccessDenied
09-15-2019 10:57 PM
It seems :
event where cloud.type = 'aws' AND json.rule = errorCode
"errorCode" option I am not getting in my RQL Builder . Hence not able to execute the query.
Further help is really appreciated.
09-16-2019 09:15 AM
Are you looking generically for errorCode? Otherwise, specifying a specific operation would help the auto help to determine what you are looking for. Also, you will need to specify a operator for errorCode such as contains/does not contain, etc.
Thanks,
Eddie
Click Accept as Solution to acknowledge that the answer to your question has been provided.
The button appears next to the replies on topics you’ve started. The member who gave the solution and all future visitors to this topic will appreciate it!
These simple actions take just seconds of your time, but go a long way in showing appreciation for community members and the LIVEcommunity as a whole!
The LIVEcommunity thanks you for your participation!