diff --git a/Applications/Browser/main.cpp b/Applications/Browser/main.cpp index af0d5f03e2..648f7f4ae3 100644 --- a/Applications/Browser/main.cpp +++ b/Applications/Browser/main.cpp @@ -74,6 +74,11 @@ int main(int argc, char** argv) return 1; } + if (unveil("/etc/passwd", "r") < 0) { + perror("unveil"); + return 1; + } + unveil(nullptr, nullptr); auto m_config = Core::ConfigFile::get_for_app("Browser");