일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- WEB-INF 노출
- 스크롤 이동
- html5
- 퀵메뉴
- 암호화&복호화
- 2012 사진공모전
- 고창
- 배경이 가려진 레이어 팝업
- 스팸글 차단
- addbatch
- 비밀번호 유효성
- 청보리밭
- PADDING
- 클라우드
- @tistory.com
- 치환
- XSS 차단
- CSS
- 자바스크립트
- column명비교
- 일괄처리
- Java
- POST 전송
- 중복필드
- apache tomcat 연동 보안
- 자동 로봇 글등록
- 다음메일
- fckeditor
- MARGIN
- 네이버 지도API
Archives
- Today
- Total
그곰의 생활
[스크랩]WebDEV Method (GET, POST, HEAD, PUT, DELETE, TRACE) 제한하기 본문
Server System/WebApp & WAS Config
[스크랩]WebDEV Method (GET, POST, HEAD, PUT, DELETE, TRACE) 제한하기
그곰 2011. 11. 17. 13:44
보안때문에 GET, POST, HEAD 정도만 사용하고 PUT, DELETE, TRACE는 막아두는데
방법은 WEB-INF\ web.xml에 코드 추가
<security-constraint> <display-name>openCoss http Auth</display-name> <web-resource-collection> <web-resource-name>SecureFile</web-resource-name> <url-pattern>/*</url-pattern> <!-- <http-method>GET</http-method> <http-method>POST</http-method> --> <http-method>HEAD</http-method> <http-method>PUT</http-method> <http-method>DELETE</http-method> <http-method>TRACE</http-method> </web-resource-collection> <auth-constraint> <role-name>openCmsAuth</role-name> </auth-constraint> </security-constraint>
'Server System > WebApp & WAS Config' 카테고리의 다른 글
[스크랩]WebDEV 처리방법 (0) | 2011.11.17 |
---|---|
[보안]Apache & Tomcat 연동시 보안 사항 (0) | 2011.10.04 |
Comments