Author:ptrace Comitter:ptrace Date:2026-05-02 19:01:53 UTC

added fuses if seccomp or landlock are disabled on prod

diff --git a/posts/2026/reuters_uncovered_banksys_identity.md b/posts/2026/reuters_uncovered_banksys_identity.md new file mode 100644 index 0000000..5a254b6 --- /dev/null +++ b/posts/2026/reuters_uncovered_banksys_identity.md @@ -0,0 +1,15 @@ title: Reuters uncovered Banksy's identity published:2026-05-02(1791927640567) updated:2026-05-02(1791927640567) META; The article is from March 13, 2026 and got published by - Simon Gardner - James Pearson - Blake Morrison I didn't read it. I always liked the anonymity of the artist. And I'll continue to stay  uninformed on that matter. _Tags: Banksy_ \ No newline at end of file diff --git a/src/search/main.jai b/src/search/main.jai index 81e3799..142e099 100644 --- a/src/search/main.jai +++ b/src/search/main.jai @@ -372,6 +372,13 @@ socket_log_error :: (loc := #caller_location) {     print_err("\n"); } is_dev_machine :: () -> bool {     shl_dev := to_string(getenv("SHL_DEVELOPER"));     if shl_dev && shl_dev == "true" return true;     return false; } qtrace_init :: #bake_arguments qtrace(color=.YELLOW); qtrace_live :: #bake_arguments qtrace(color=.GREEN); @@ -390,12 +397,6 @@ Options STR_END; is_dev_machine :: () -> bool {     shl_dev := to_string(getenv("SHL_DEVELOPER"));     if shl_dev && shl_dev == "true" return true;     return false; } handler_server :: (signal: int) #c_call {     push_context {         log("Received interrupt signal."); diff --git a/src/search/sec_landlock.jai b/src/search/sec_landlock.jai index 0317469..67e7c74 100644 --- a/src/search/sec_landlock.jai +++ b/src/search/sec_landlock.jai @@ -2,7 +2,11 @@ sec_landlock_init :: () {     #if !LANDLOCK_ENABLED return;     #if !LANDLOCK_ENABLED {         log_error("LANDLOCK IS DISABLED!");         if !is_dev_machine() then exit(99);         return;     }     new_context := context;     new_context.logger = my_logger; diff --git a/src/search/sec_seccomp.jai b/src/search/sec_seccomp.jai index eb4b24d..c53f27b 100644 --- a/src/search/sec_seccomp.jai +++ b/src/search/sec_seccomp.jai @@ -2,7 +2,11 @@ sec_seccomp_init :: () {     #if !SECCOMP_ENABLED return;     #if !SECCOMP_ENABLED {         log_error("SECCOMP IS DISABLED!");         if !is_dev_machine() then exit(99);         return;     }     new_context := context;     new_context.logger = my_logger;