36 lines
974 B
Python
36 lines
974 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="f94f70a3-7c63-4f75-b5bc-f2227e284934",
|
|
platforms=["windows"],
|
|
endpoint=[
|
|
{
|
|
"rule_name": "Privilege Escalation via Named Pipe Impersonation",
|
|
"rule_id": "a0265178-779d-4bc5-b3f1-abb3bcddedab",
|
|
}
|
|
],
|
|
siem=[{
|
|
'rule_id': '3ecbdc9e-e4f2-43fa-8cca-63802125e582',
|
|
'rule_name': 'Privilege Escalation via Named Pipe Impersonation'
|
|
}],
|
|
techniques=["T1134"],
|
|
)
|
|
|
|
|
|
@common.requires_os(*metadata.platforms)
|
|
def main():
|
|
|
|
# Execute command
|
|
common.execute(["cmd.exe", "/c", "echo", "cmd.exe", ">", "\\\\.\\pipe\\named"], timeout=5)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
exit(main())
|