browser-use--browser-harness
8dc728598e
Previously start_unix_server() would bind() and listen() with mode derived from the process umask before os.chmod(0o600) ran, leaving a brief window where the socket's mode reflected umask. Setting umask 0o077 around the bind makes the socket land at 0600 directly, removing the window. Refs #298