diff --git a/Userland/Applications/SystemMonitor/main.cpp b/Userland/Applications/SystemMonitor/main.cpp index fcc43dbc61..de94c32f5d 100644 --- a/Userland/Applications/SystemMonitor/main.cpp +++ b/Userland/Applications/SystemMonitor/main.cpp @@ -139,6 +139,11 @@ int main(int argc, char** argv) return 1; } + if (unveil("/usr/local/bin", "r") < 0) { + perror("unveil"); + return 1; + } + if (unveil("/bin/Profiler", "rx") < 0) { perror("unveil"); return 1;