File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,10 @@ PHP NEWS
10
10
. Fixed memory corruption in openssl_x509_parse() (CVE-2013-6420).
11
11
(Stefan Esser).
12
12
13
+ - FPM:
14
+ . Fixed bug #67060 (sapi/fpm: possible privilege escalation due to insecure
15
+ default configuration) (CVE-2014-0185). (Stas)
16
+
13
17
11 Jul 2013, PHP 5.3.27
14
18
15
19
- Core:
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ int fpm_unix_resolve_socket_premissions(struct fpm_worker_pool_s *wp) /* {{{ */
35
35
/* uninitialized */
36
36
wp -> socket_uid = -1 ;
37
37
wp -> socket_gid = -1 ;
38
- wp -> socket_mode = 0666 ;
38
+ wp -> socket_mode = 0660 ;
39
39
40
40
if (!c ) {
41
41
return 0 ;
Original file line number Diff line number Diff line change @@ -158,10 +158,10 @@ listen = 127.0.0.1:9000
158
158
; permissions must be set in order to allow connections from a web server. Many
159
159
; BSD-derived systems allow connections regardless of permissions.
160
160
; Default Values: user and group are set as the running user
161
- ; mode is set to 0666
161
+ ; mode is set to 0660
162
162
;listen.owner = @php_fpm_user@
163
163
;listen.group = @php_fpm_group@
164
- ;listen.mode = 0666
164
+ ;listen.mode = 0660
165
165
166
166
; List of ipv4 addresses of FastCGI clients which are allowed to connect.
167
167
; Equivalent to the FCGI_WEB_SERVER_ADDRS environment variable in the original
You can’t perform that action at this time.
0 commit comments