forked from elastic/detection-rules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
auth_plugin.py
27 lines (19 loc) · 860 Bytes
/
auth_plugin.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
# or more contributor license agreements. Licensed under the Elastic License
# 2.0; you may not use this file except in compliance with the Elastic License
# 2.0.
from . import common
from . import RtaMetadata
metadata = RtaMetadata(
uuid="96c3cc10-7f86-428c-b353-e9de52472a96",
platforms=["macos"],
endpoint=[],
siem=[{"rule_name": "Authorization Plugin Modification", "rule_id": "e6c98d38-633d-4b3e-9387-42112cd5ac10"}],
techniques=["T1547"],
)
@common.requires_os(metadata.platforms)
def main():
common.log("Executing file modification on test.plist to mimic authorization plugin modification")
common.temporary_file_helper("testing", file_name="/Library/Security/SecurityAgentPlugins/test.plist")
if __name__ == "__main__":
exit(main())