-
Notifications
You must be signed in to change notification settings - Fork 505
/
at_job.py
32 lines (24 loc) · 888 Bytes
/
at_job.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
# 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="084c5d8f-2578-4fe0-bc6f-f6c44205804a",
platforms=["macos"],
endpoint=[
{
"rule_name": "At Job Creation or Modification by an Unusual Process",
"rule_id": "779f18ce-1457-457c-80e1-3a5d146c2dc0",
}
],
siem=[],
techniques=["T1053", "T1053.002"],
)
@common.requires_os(*metadata.platforms)
def main():
common.log("Executing file creation on /private/var/at/jobs/test.")
common.temporary_file_helper("testing", file_name="/private/var/at/jobs/test")
if __name__ == "__main__":
exit(main())