From 15ca5ceab46ad8887846b3e1b840b376344b7449 Mon Sep 17 00:00:00 2001 From: Felipe Zimmerle Date: Tue, 25 Jul 2017 23:07:10 -0300 Subject: [PATCH] Yet another change on the audit log permissions The default values are set to 0640 and 0750. That is the real value in version 2. --- headers/modsecurity/audit_log.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/headers/modsecurity/audit_log.h b/headers/modsecurity/audit_log.h index 846d6187..6e685d6f 100644 --- a/headers/modsecurity/audit_log.h +++ b/headers/modsecurity/audit_log.h @@ -193,10 +193,10 @@ class AuditLog { | FAuditLogPart | HAuditLogPart | ZAuditLogPart; int m_filePermission; - int m_defaultFilePermission = 1600; + int m_defaultFilePermission = 0640; int m_directoryPermission; - int m_defaultDirectoryPermission = 1872; + int m_defaultDirectoryPermission = 0750; private: AuditLogStatus m_status;