Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 698 Bytes

Launch_Daemon.md

File metadata and controls

23 lines (18 loc) · 698 Bytes

Launch Daemon

MITRE ATT&CK Technique: T1160

Place the following file (com.example.hello) in /System/Library/LaunchDaemons or /Library/LaunchDaemons

  <?xml version="1.0" encoding="UTF-8"?>
  <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
  <plist version="1.0">
  <dict>
      <key>Label</key>
      <string>com.example.hello</string>
      <key>ProgramArguments</key>
      <array>
          <string>hello</string>
          <string>world</string>
      </array>
      <key>KeepAlive</key>
      <true/>
  </dict>
  </plist>