40 lines
1.0 KiB
Python
40 lines
1.0 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
|
|
# 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="23997dfa-9e30-4091-9ee2-8bd45a2da70a",
|
|
platforms=["macos"],
|
|
endpoint=[],
|
|
siem=[
|
|
{
|
|
"rule_name": "Remote SSH Login Enabled via systemsetup Command",
|
|
"rule_id": "5ae4e6f8-d1bf-40fa-96ba-e29645e1e4dc",
|
|
}
|
|
],
|
|
techniques=["T1021"],
|
|
)
|
|
|
|
|
|
@common.requires_os(metadata.platforms)
|
|
def main():
|
|
|
|
masquerade = "/tmp/systemsetup"
|
|
common.create_macos_masquerade(masquerade)
|
|
|
|
# Execute command
|
|
common.log("Launching fake systemsetup command to mimic enabling remote SSH.")
|
|
common.execute([masquerade, "-setremotelogin", "on"], timeout=10, kill=True)
|
|
|
|
# cleanup
|
|
common.remove_file(masquerade)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
exit(main())
|