28 lines
829 B
Python
28 lines
829 B
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="2e5d3ddd-6dc4-4ebf-93e3-c32698b8df40",
|
|
platforms=["windows"],
|
|
endpoint=[],
|
|
siem=[{'rule_id': '1327384f-00f3-44d5-9a8c-2373ba071e92', 'rule_name': 'Persistence via Scheduled Job Creation'}],
|
|
techniques=['T1053', 'T1053.005'],
|
|
)
|
|
EXE_FILE = common.get_path("bin", "renamed_posh.exe")
|
|
|
|
|
|
@common.requires_os(*metadata.platforms)
|
|
def main():
|
|
path = "C:\\Windows\\Tasks\\a.job"
|
|
common.copy_file(EXE_FILE, path)
|
|
common.remove_files(path)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
exit(main())
|