32 lines
924 B
Python
32 lines
924 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="0a6fcfaa-db5e-498f-9253-0f76b8a18687",
|
|
platforms=["macos"],
|
|
endpoint=[
|
|
{"rule_name": "Dumping Account Hashes via Built-In Commands", "rule_id": "2ed766db-e0b0-4a07-8ec1-4e41dd406b64"}
|
|
],
|
|
siem=[
|
|
{"rule_name": "Dumping Account Hashes via Built-In Commands", "rule_id": "02ea4563-ec10-4974-b7de-12e65aa4f9b3"}
|
|
],
|
|
techniques=["T1003"],
|
|
)
|
|
|
|
|
|
@common.requires_os(*metadata.platforms)
|
|
def main():
|
|
|
|
common.log("Executing defaults commands to dump hashes.")
|
|
common.execute(["defaults", "ShadowHashData", "-dump"])
|
|
|
|
|
|
if __name__ == "__main__":
|
|
exit(main())
|