forked from elastic/detection-rules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdsenableroot_account.py
34 lines (24 loc) · 966 Bytes
/
dsenableroot_account.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
28
29
30
31
32
33
34
# 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="eddbcd95-2922-46e4-b356-86d3bc8aeadc",
platforms=["macos"],
endpoint=[],
siem=[{"rule_id": "cc2fd2d0-ba3a-4939-b87f-2901764ed036", "rule_name": "Attempt to Enable the Root Account"}],
techniques=["T1078", "T1078.003"],
)
@common.requires_os(*metadata.platforms)
def main():
masquerade = "/tmp/dsenableroot"
common.create_macos_masquerade(masquerade)
# Execute command
common.log("Launching fake dsenableroot commands to mimic enabling root accounts.")
common.execute([masquerade], timeout=10, kill=True)
# cleanup
common.remove_file(masquerade)
if __name__ == "__main__":
exit(main())