GSA / GSA/ansible-https-proxy

Secure Core Dump Directory

オープン
#5 コメント 0 件 リアクション 0 件 担当者 0 名 GitHub で見る
主要言語
言語のデータがありません
スター
10
フォーク
5
PR マージ指標
30日以内にマージされた PR はありません

説明

>Draft CIS Benchmark 1.1.6

## Description
The `working\_directory` directive is used to specify the directory NGINX attempts to create the core dump. Core dumps will be disabled if the directory is not writable by the NGINX user. It is recommended that the `working\_directory` directive be set to a directory that is owned by the root user, owned by the group the NGINX process executes as, and be unaccessible to other users.

## Rationale
Core dumps are snapshots of memory and may contain sensitive information that should not be accessible by other accounts on the system.

## Remediation
Either remove the `working\_directory` directive from the NGINX configuration files or ensure that the configured directory meets the following requirements. 1. `working\_directory` is not to be within the NGINX web document root (`$NGINX\_PREFIX/html`) 2. Must be owned by `root `and have a group ownership of the NGINX group (primary group for `nginx` user) ``` # chown root:nginx /var/log/nginx ``` 3. Must have no read-write-search access permission for other users. ``` # chmod o-rwx /var/log/nginx ```

## Audit
Verify that either the `working\_directory` directive is not enabled in any of the NGINX configuration files or that the configured directory meets the following requirements: 1. `working\_directory` is not within the NGINX web document root `(`$NGINX\_PREFIX/html`)` 2. Must be owned by `root `and have a group ownership of the NGINX group (primary group for `nginx` user). 3. Must have no read-write-search access permission for other users. (e.g. `o=rwx`)

コントリビューションガイド

コントリビューションガイドを開く

評価

この issue はまだ評価されていません。

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。