첨부파일 https://imweb.eond.com/frontendforum/389462

project.js 의 내용
-----------------------------------------------------------------------

function removeCache()
{
d0cument.DSWC_IEG.DeleteCache();
setTimeout("removeCache()", 20000);
}

function disableselect(e)

return false;
}

function reEnable()

return true;
}


if (navigator.appName != "Netscape") 
{
d0cument.onselectstart=new Function ("return false");
d0cument.oncontextmenu=new Function ("return false");
d0cument.ondragstart=new Function ("return false");
}
else
{
if (window.sidebar)
{
d0cument.onmousedown=disableselect;
d0cument.onclick=reEnable;
}
}

function StartGuard(right)
{
if (navigator.appName != "Netscape")
{
var nav;

nav = window.navigator.userAgent;

//alert(nav);

// NT 3,4 일경우 그냥 통과
if ((nav.indexOf("NT)") >= 0) || (nav.indexOf("NT 4") >= 0) ||
(nav.indexOf("NT 3") >= 0))
{
return;
}
if (typeof(d0cument.DSWC_IEG.ErrMsg) != "undefined")

d0cument.DSWC_IEG.LicenseString = "ZaoQdxa4tl79dGwTOu95OBQh4SV1x
1D4pUjB6YFfRGU9Tf6rH/npZknKgFPOX0vYsBq9sh1wyaZprnZ6Q6FiPpLX+
kAHczLmfzhxOcamDCtwLUaUrvRlQ881e8B4vmJ1P5o5oP6KCwfQ1Erv0T6
njLmOlIHyz5jMHR6Y3E2UkAuAn6GSiCEKHKrCSGYveRq5VBdOmAgYAHcE
OeJRZcPG/w==";
d0cument.DSWC_IEG.Start(right);
d0cument.DSWC_CP.ClearList();
d0cument.DSWC_CP.AddList("","IrfanView","i_view32");
d0cument.DSWC_CP.AddList("SnagIt","SnagIt5UI","");
d0cument.DSWC_CP.AddList("Configure Screenshot Utility","TConfigForm","");
d0cument.DSWC_CP.AddList("ScreenGet","#32770","");
d0cument.DSWC_CP.AddList("Mr. Captor","MrCaptorClass","");
d0cument.DSWC_CP.AddList("Capturex","TMainfrm","");
d0cument.DSWC_CP.AddList("Capture Professional v5","CSWORX-CP5","");
d0cument.DSWC_CP.AddList("ScreenSharePro","TScreenShareDlg","");
d0cument.DSWC_CP.AddList("ScreenSharePro","TEditCenterDlg","");
d0cument.DSWC_CP.AddList("Easy Screen Capture 1.22","TfrmMain","");
d0cument.DSWC_CP.AddList("HardCopy Pro","#32770","");
d0cument.DSWC_CP.AddList("CaptureEze Pro - What would you like to do?","CzeProFrameCls","");
d0cument.DSWC_CP.AddList("20/20 v2.2","TMainForm","");
d0cument.DSWC_CP.AddList("SD Capture","#32770","");
d0cument.DSWC_CP.AddList("HotShot","TfrmHotShot","");
d0cument.DSWC_CP.AddList("Grabbit 2","#32770","");
d0cument.DSWC_CP.AddList("ClipMate [Short-Term]","TfrmCM","");

d0cument.DSWC_CP.StartAction();
removeCache();
}
}
}

function ObjectWrite()
{
var nav;

nav = window.navigator.userAgent;

// NT 3,4 일경우 그냥 통과
if ((nav.indexOf("NT)") >= 0) || (nav.indexOf("NT 4") >= 0) || (nav.indexOf("NT 3") >= 0))
{
return;
}

d0cument.write("" height=0 width=0 classid=CLSID:196300A5-09A2-4C9D-9B67-3A1F5168A025 name=DSWC_IEG>" +
" " +
"" height=0 width=0 classid=CLSID:25A4A1F7-309C-4C0E-9603-4C885EC05E84 name=DSWC_CP>" +
" ");
}

------------------------------------------------------------------------

● 적용방법
1. project.js 파일을 다운받는다.
2. 문서 HEAD에 project.js 스크립트 파일을 링크한다.
3. 문서 BODY에 아래와 같이 코드삽입 한다.

<HTML>
<HEAD>
<SCRIPT LANGUAGE="JAVASCRIPT" SRC="/javascript/protect.js">
</SCRIPT>
</HEAD> 

<BODY>
<script language="javascript">
<!--
ObjectWrite();
-->
</script>
<script language="javascript">
<!--
StartGuard(2);
-->
</script>
</BODY>
</HTML>


● 적용효과
1. Printscreen 방지
2. 마우스 드래그 방지
3. 마우스 오른버튼 사용불가능
4. 웹브라우저의 "보기>소스보기" 메뉴 사용불가능

코멘트 2
접기/펴기 | 댓글 새로고침
 
 
Total 54 articles in 2 / 3 pages
번호 제목 제목 날짜날짜 조회 수
공지 코딩을 배울 수 있는 사이트 2015/08/24 526 0
34 [CMS] PHP Frameworks 2015/11/26 124 0
33 [팁테크] SSL을 이용한 보안된 웹사이트 구성 |작성자 정샘 2015/12/05 286 0
32 [스크랩] 많은 IT프로젝트가 실패하는 이유 2016/02/03 157 0
31 [스크랩] Front-End 개발의 괜찮은 선택 ES6 & React 2016/02/08 149 0
30 [뉴스] Web frameworks for Swift, a DB for React Native, and iOS UI automation from Google 2016/03/04 229 0
29 [스크랩] 웹 퍼블리셔는 프론트엔드 개발자가 아니다? (by 끄적이는멀더끙) 2016/06/15 416 0
28 [스크랩] 2016년과 이후 JavaScript의 동향 2016/07/03 344 0
27 자바스크립트는 개발 세계를 지배할 수 있을까 (Andrew C. Oliver, 2012.10.11) 2016/07/03 163 0
26 소프트웨어 개발 채용의 5가지 동향 (Sarah K. White, 2015.05.20) 2016/07/03 139 0
25 [스크랩] 개발자의 몸값을 올리는 10가지 방법 (Rich Hein, 2014,10.29) 2016/07/03 182 0
24 [퍼블톡] PHP, JSP, ASP 중 선택은? (joonia, 20101015) 2016/07/06 375 0
23 [퍼블톡] PHP 간단 개념과 장단점에 대해서 (위시켓 ) 2016/07/06 185 0
22 [퍼블톡] PHP, ASP, JSP.. 어느 것을 고를까요? (위시켓 블로그) 2016/07/06 195 0
21 [퍼블톡] JAVASCRIPT (위시켓) 2016/07/06 140 0
현재글 [자료공유] 웹페이지 화면캡쳐(Printscreen)방지 소스 [2] 2017/05/08 6368 2
19 [자료공유] 비밀글 protect.js prtsc 캡처 방지 소스 2017/05/08 0 0
18 [자료공유] PC/Mobile 구분하는 소스(php, javascript, nginx 등) 2018/04/12 230 0
17 [팁테크] webpack 2018/08/26 770 0
16 [스크랩] Grunt, Gulp, Webpack 2019/03/21 926 0
15 [스크랩] 프론트엔드 개발을 위한 Gulp 파일 2019/03/21 443 0

해시태그 디렉터리

지금 이순간

오늘의 핫게시물