Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- frida
- logstash
- Docker
- Openstack
- Volatility
- 인시큐어뱅크
- beebox
- ctf
- Suninatas
- 안드로이드
- vulnhub
- Strings
- base64
- NTFS
- SQL Injection
- foremost
- Reflected XSS
- MFT
- ESXi
- igoat
- XSS
- kibana
- CTF-d
- otter
- 파이썬
- 2018
- lord of sql injection
- InsecureBank
- elasticsearch
- diva
Archives
- Today
- Total
Information Security
OT-04. Dashboard 설정파일 접근권한 설정 본문
설정 파일들에는 구성 요소의 원활한 기능을 수행하는데 필요한 중요한 매개변수와 정보가 들어있다. 권한이 없는 사용자가 의도적으로 또는 실수로 매개변수나 파일 자체를 수정하거나 삭제하면 심각한 가용성 문제로 인해 다른 사용자에게 서비스가 거부될 수 있다. 따라서 중요한 설정 파일의 접근권한을 엄격하게 설정해야 한다.
양호 : Dashboard 설정파일의 퍼미션이 640 또는 그보다 엄격하게 적용되어 있는 경우
취약 : Dashboard 설정 파일의 퍼미션이 최소 640으로 적용되어 있지 않은 경우
▶ Dashboard 설정파일 퍼미션을 확인
# ll /etc/openstack-dashboard/local_settings.py
# ll /etc/openstack-dashboard/local_settings
▶ 설정파일의 퍼미션을 640으로 설정
# chmod 640 /etc/openstack-dashboard/local_settings.py
# chmod 640 /etc/openstack-dashboard/local_settings
'클라우드 > OpenStack' 카테고리의 다른 글
OT-06. Compute 설정파일 접근권한 설정 (0) | 2023.08.06 |
---|---|
OT-05. Compute 설정파일 소유권 설정 (0) | 2023.08.06 |
OT-03. Dashboard 설정파일 소유권 설정 (0) | 2023.08.06 |
OT-02. Identity 설정파일 접근권한 설정 (0) | 2023.08.06 |
OT-01. Identity 설정파일 소유권 설정 (0) | 2023.08.06 |