subprocess module call
Medium
- Category
- Dangerous Code Execution
- Content
def _macos_notify(message: str): try: subprocess.run([ "osascript", "-e", f'display notification "{message}" with title "OpenClaw Preflight"' ], timeout=5)- Confidence
- 80% confidence
- Finding
- subprocess.run([ "osascript", "-e", f'display notification "{message}" with title "OpenClaw Preflight"' ], timeout=5)
