We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5775409 commit 5012bc2Copy full SHA for 5012bc2
1 file changed
src/detection/processes/processes_linux.c
@@ -16,7 +16,7 @@ const char* ffDetectProcesses(uint32_t* result)
16
{
17
if (
18
#ifdef _DIRENT_HAVE_D_TYPE
19
- entry->d_type == DT_DIR &&
+ (entry->d_type == DT_DIR || entry->d_type == DT_UNKNOWN) &&
20
#endif
21
ffCharIsDigit(entry->d_name[0]))
22
++num;
0 commit comments