33 lines
1003 B
Python
33 lines
1003 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="3a84dc01-0202-4aee-8cd1-5fdefead9f4f",
|
|
platforms=["windows"],
|
|
endpoint=[],
|
|
siem=[{'rule_id': '4682fd2c-cfae-47ed-a543-9bed37657aa6', 'rule_name': 'Potential Local NTLM Relay via HTTP'}],
|
|
techniques=['T1212'],
|
|
)
|
|
EXE_FILE = common.get_path("bin", "renamed_posh.exe")
|
|
|
|
|
|
@common.requires_os(*metadata.platforms)
|
|
def main():
|
|
rundll32 = "C:\\Users\\Public\\rundll32.exe"
|
|
common.copy_file(EXE_FILE, rundll32)
|
|
|
|
# Execute command
|
|
common.execute([rundll32, "/c", "echo", "C:\\Windows\\System32\\davclnt.dll,DavSetCookie", "https*/print/pipe/"],
|
|
timeout=10)
|
|
common.remove_file(rundll32)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
exit(main())
|