일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- grep
- IntelliJ
- import
- Mac
- plugin
- tomcat
- GIT
- web.xml
- vscode
- context
- netsh
- Quartz
- resource
- bash
- find
- profile
- JavaScript
- xargs
- Windows
- lsof
- Eclipse
- port
- Source
- VirtualBox
- 단축키
- ssh
- 네트워크
- Windows 10
- maVen
- 줄바꿈 문자
- Today
- Total
목록2024/08/30 (3)
develog
# 인증서 정보 전체 확인openssl x509 -in STAR_mysite_com.crt -noout -text# 시작일, 만료일 확인 (GMT 시간 주의)openssl x509 -in STAR_mysite_com.crt -noout -startdate -enddate# 도메인 확인openssl x509 -in STAR_mysite_com.crt -noout -subject# 도움말 확인openssl x509 --help-noout No output, just status-text Print the certificate in text form-startdate Set notBefore field-end..
libapache2-mod-security2 설치하기# libapache2-mod-security2 를 설치한다sudo apt-get install libapache2-mod-security2# security2 를 활성화 한다sudo a2enmod security2 아파치 설정에 아래 내용을 추가한다# vi /etc/apache2/apache2.conf SecRuleEngine On SecServerSignature " " 아파치를 재시작한다
security.conf 수정# vi /etc/apache2/conf-available/security.conf# ServerTokens 설정ServerTokens Prod# ServerSignature 설정ServerSignature Off ServerTokens 값에 따른 Server 응답 헤더 출력ServerTokens Full (또는 없으면)# Server 응답 헤더 출력Server: Apache/2.4.41 (Ubuntu) OpenSSL/1.1.1fServerTokens OS# Server 응답 헤더 출력Server: Apache/2.4.41 (Ubuntu)ServerTokens Minimal# Server 응답 헤더 출력Server: Apache/2.4.41ServerTokens: Prod# ..