page no.
79405577
- 기능 설명
- DRM에 보안강화 필터링을 추가했습니다. 또한, DRM해지시를 대비한 un_drm.jsp파일을 추가하였습니다.
- 사용 방법
/extention/biz/drm.jsp 에 보안강화 필터링을 추가했습니다. 샘플은 아래 코드 블럭을 참고하세요.
Example code<%! private boolean validateFilePath(String path){ boolean ok = false; String strReportPath = XMatrix.PATH_REPORTPATH; String strTempPath = XMatrix.getRepOption("TEMP_PATH", strReportPath + File.separatorChar + "_TEMP_"); if(path.indexOf(strReportPath)==0 || path.indexOf(strTempPath)==0){ ok = true; } return ok; } %> <% //drm.jsp소스 내용 //...............중략 String srcPath = RequestWrapper.filter( Util.ifnull(request.getParameter("srcPath"),"") ); String srcFileName = RequestWrapper.filter( Util.ifnull(request.getParameter("srcFileName"),"") ); String tgtPath = RequestWrapper.filter( Util.ifnull(request.getParameter("tgtPath"),"") ); String tgtFileName = RequestWrapper.filter( Util.ifnull(request.getParameter("tgtFileName"),"") ); //파일경로 필터링 강화 if(validateFilePath(srcPath) == false || validateFilePath(tgtPath)==false){ throw new Exception("file path is wrong"); } %>
참고 사항
DRM해지시 maf-extend-1.0.jar에서 /webquery/un_drm.jsp를 호출합니다.
기능 정보 |
|
|
|
|
|
|
|
---|---|---|---|---|---|---|---|
시작 버전 정보 |
|