38 lines
1.0 KiB
Python
38 lines
1.0 KiB
Python
# 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="f9feed6d-bae3-49c6-8952-7ed8e9b0b9ef",
|
|
platforms=["macos"],
|
|
endpoint=[
|
|
{
|
|
"rule_name": "Potential Privilege Escalation via Root Crontab File Modification",
|
|
"rule_id": "31151602-1de1-4301-9b75-215ac8902b75",
|
|
}
|
|
],
|
|
siem=[
|
|
{
|
|
"rule_name": "Privilege Escalation via Root Crontab File Modification",
|
|
"rule_id": "0ff84c42-873d-41a2-a4ed-08d74d352d01",
|
|
}
|
|
],
|
|
techniques=["T1053"],
|
|
)
|
|
|
|
|
|
@common.requires_os(*metadata.platforms)
|
|
def main():
|
|
|
|
common.log("Executing deletion on /private/var/at/tabs/root file.")
|
|
common.temporary_file_helper("testing", file_name="/private/var/at/tabs/root")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
exit(main())
|