diff --git a/cmake/modules/driver.cmake b/cmake/modules/driver.cmake index 90fea39e..b19bc1f5 100644 --- a/cmake/modules/driver.cmake +++ b/cmake/modules/driver.cmake @@ -26,8 +26,8 @@ else() # In case you want to test against another driver version (or branch, or commit) just pass the variable - # ie., `cmake -DDRIVER_VERSION=dev ..` if(NOT DRIVER_VERSION) - set(DRIVER_VERSION "0c280ca6847d7fbb616f152bb6cffd5b4d74452d") - set(DRIVER_CHECKSUM "SHA256=63577357e43cade45e76fb5f4522493195dcde1a6cfed3768ba5d51a67ab50ab") + set(DRIVER_VERSION "0c46d86160e663e31b28b006270120245bb74c9a") + set(DRIVER_CHECKSUM "SHA256=15e13f8242ed2a5525a0a451f529464f09191625b9bfb1cfd3a8602217cb3265") endif() # cd /path/to/build && cmake /path/to/source diff --git a/cmake/modules/falcosecurity-libs.cmake b/cmake/modules/falcosecurity-libs.cmake index 5112b39f..4ab3b56f 100644 --- a/cmake/modules/falcosecurity-libs.cmake +++ b/cmake/modules/falcosecurity-libs.cmake @@ -27,8 +27,8 @@ else() # In case you want to test against another falcosecurity/libs version (or branch, or commit) just pass the variable - # ie., `cmake -DFALCOSECURITY_LIBS_VERSION=dev ..` if(NOT FALCOSECURITY_LIBS_VERSION) - set(FALCOSECURITY_LIBS_VERSION "0c280ca6847d7fbb616f152bb6cffd5b4d74452d") - set(FALCOSECURITY_LIBS_CHECKSUM "SHA256=63577357e43cade45e76fb5f4522493195dcde1a6cfed3768ba5d51a67ab50ab") + set(FALCOSECURITY_LIBS_VERSION "0c46d86160e663e31b28b006270120245bb74c9a") + set(FALCOSECURITY_LIBS_CHECKSUM "SHA256=15e13f8242ed2a5525a0a451f529464f09191625b9bfb1cfd3a8602217cb3265") endif() # cd /path/to/build && cmake /path/to/source diff --git a/userspace/falco/app_actions/load_rules_files.cpp b/userspace/falco/app_actions/load_rules_files.cpp index c2573d67..fc704865 100644 --- a/userspace/falco/app_actions/load_rules_files.cpp +++ b/userspace/falco/app_actions/load_rules_files.cpp @@ -67,6 +67,14 @@ void application::check_for_ignored_events() continue; } + /* If the event is not generated by the running system we don't print + * any warning right now. + */ + if(!sinsp::is_generable_event(it)) + { + continue; + } + /* If the event is not in this set it is not considered by Falco. */ if(interesting_events.find(it) == interesting_events.end()) {