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

Issue #1296: Add File Access Check event class #1297

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 68 additions & 0 deletions events/system/file_access_check.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
{
"caption": "File Access Check",
"description": "File Access Check events report when a local or network file was checked to see whether client can be granted desired access on a file.",
"extends": "system",
"name": "file_access_check",
"uid": 10,
"associations": {
"device": [
"actor.user"
],
"actor.user": [
"device"
]
},
"attributes": {
"access_list": {
"group": "primary",
"requirement": "recommended"
},
"access_mask": {
"description": "The sum of hexadecimal values of requested access rights.",
"group": "primary",
"requirement": "recommended"
},
"access_result": {
"group": "primary",
"requirement": "recommended"
},
"activity_id": {
"description": "The activity ID of the event.",
"enum": {
"1": {
"caption": "Allow"
},
"2": {
"caption": "Block"
}
}
},
"actor": {
"description": "The actor that performed the activity on the <code>file</code> object",
"requirement": "optional"
},
"file": {
"description": "The file that is the target of the activity.",
"group": "primary",
"requirement": "required"
},
"share": {
"description": "The share name.",
"group": "primary",
"requirement": "recommended"
},
"share_type": {
"group": "primary",
"requirement": "recommended"
},
"share_type_id": {
"group": "primary",
"requirement": "recommended"
},
"src_endpoint": {
"description": "The Endpoint from which the file access was requested.",
"group": "primary",
"requirement": "required"
}
}
}
Loading