forked from elastic/detection-rules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
double_persist.py
36 lines (27 loc) · 933 Bytes
/
double_persist.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
35
36
# 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="74d0c16a-8af1-4dbb-9202-cc4b25208ea6",
platforms=["windows"],
endpoint=[
{
"rule_name": "Untrusted Process Writing to Commonly Abused Persistence Locations",
"rule_id": "392b0c89-1427-4601-8b32-01e8e40600a6",
}
],
siem=[],
techniques=["T1547", "T1112"],
)
EXE_FILE = common.get_path("bin", "DoublePersist.exe")
@common.requires_os(*metadata.platforms)
def main():
binary = "DoublePersist.exe"
common.copy_file(EXE_FILE, binary)
common.execute([binary])
common.remove_files(binary)
if __name__ == "__main__":
exit(main())