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>
98 lines
3.7 KiB
Python
98 lines
3.7 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: Encrypting files with WinRAR
|
|
# RTA: winrar_encrypted.py
|
|
# ATT&CK: T1022
|
|
# Description: Uses "bin\rar.exe" to perform encryption of archives and archive headers.
|
|
|
|
import base64
|
|
import os
|
|
import sys
|
|
|
|
from . import common
|
|
|
|
MY_APP = common.get_path("bin", "myapp.exe")
|
|
WINRAR = common.get_path("bin", "Rar.exe")
|
|
|
|
|
|
def create_exfil(path=os.path.abspath("secret_stuff.txt")):
|
|
common.log("Writing dummy exfil to %s" % path)
|
|
with open(path, 'wb') as f:
|
|
f.write(base64.b64encode(b"This is really secret stuff" * 100))
|
|
return path
|
|
|
|
|
|
@common.requires_os(common.WINDOWS)
|
|
@common.dependencies(MY_APP, WINRAR)
|
|
def main(password="s0l33t"):
|
|
# Copies of the rar.exe for various tests
|
|
winrar_bin_modsig = common.get_path("bin", "rar_broken-sig.exe")
|
|
common.patch_file(WINRAR, b"win.rar GmbH", b"bad.bad GmbH", winrar_bin_modsig)
|
|
|
|
# Renamed copies of executables
|
|
winrar_bin_modsig_a = os.path.abspath("a.exe")
|
|
winrar_bin_b = os.path.abspath("b.exe")
|
|
|
|
common.copy_file(winrar_bin_modsig, winrar_bin_modsig_a)
|
|
common.copy_file(WINRAR, winrar_bin_b)
|
|
|
|
# Output options for various tests
|
|
rar_file = os.path.abspath("out.rar")
|
|
rar_file_jpg = os.path.abspath("out.jpg")
|
|
common.remove_files(rar_file, rar_file_jpg)
|
|
|
|
# use case: rar with -hp to generate new rar file w/ .rar
|
|
|
|
common.log("Test case 1: Basic use new rar out", log_type="!")
|
|
exfil = create_exfil()
|
|
common.execute([WINRAR, "a", rar_file, "-hp" + password, exfil])
|
|
|
|
# use case: rar with -hp to add to existing rar file
|
|
# didn't delete rar from previous case
|
|
common.log("Test case 2: Basic use add to existing rar", log_type="!")
|
|
exfil2 = create_exfil("more_stuff.txt")
|
|
common.execute([WINRAR, "a", rar_file, "-hp" + password, exfil2])
|
|
common.remove_files(exfil2, rar_file)
|
|
|
|
# use case: process_name == "*rar*" - yes
|
|
# original_file_name == "*rar*" - no
|
|
# signature_signer == "*win.rar*" - no
|
|
# output filename == "*.rar" - no
|
|
common.log("Test case 3: *rar* in process name", log_type="!")
|
|
common.execute([winrar_bin_modsig, "a", rar_file_jpg, "-hp" + password, exfil])
|
|
common.remove_files(rar_file_jpg)
|
|
|
|
# use case: process_name == "*rar*" - no
|
|
# original_file_name == "*rar*" - no
|
|
# signature_signer == "*win.rar*" - yes
|
|
# output filename == "*.rar" - no
|
|
common.log("Test case 4: Expected WinRar signature", log_type="!")
|
|
common.execute([winrar_bin_b, "a", rar_file_jpg, "-hp" + password, exfil])
|
|
common.remove_files(rar_file_jpg)
|
|
|
|
# use case: process_name == "*rar*" - no
|
|
# original_file_name == "*rar*" - no
|
|
# signature_signer == "*win.rar*" -no
|
|
# output filename == "*.rar" - yes
|
|
common.log("Test case 5: *.rar in output filename", log_type="!")
|
|
common.execute([winrar_bin_modsig_a, "a", rar_file, "-hp" + password, exfil])
|
|
|
|
common.remove_files(rar_file, winrar_bin_modsig_a, winrar_bin_b, exfil)
|
|
|
|
# false positive - should not match signature
|
|
# use case: process_name == "*rar*" - no
|
|
# original_file_name == "*rar*" - no
|
|
# signature_signer == "*win.rar*" -no
|
|
# output filename == "*.rar" - no
|
|
common.log("Test case 6: FP, shoudln't alert, run with myapp.exe", log_type="!")
|
|
common.execute([MY_APP, "-hpbadargument"])
|
|
|
|
common.log("Cleanup", "-")
|
|
common.remove_files(winrar_bin_modsig, winrar_bin_modsig_a, winrar_bin_b)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
exit(main(*sys.argv[1:]))
|