프록시 사이트
http://www.freeproxylist.net
http://www.proxfree.com
http://proxylist.hidemyass.com
-----------------
paros를 이용해
마우스 우클릭 활성화
drag, click, block, mouse, right... 키워드 검색 하여 소스 수정
우클릭/복사하기/드래그 방지 기능은 그냥 자바스크립트 내에 아래와 같이 코드를 넣어주거나
------------------------------------------------------------------------------
document.oncontextmenu = new Function('return false'); // 우클릭방지
document.ondragstart = new Function('reutrn false'); // 드래그 방지
document.onselectstart = new Function('return false'); // 복사 방지
------------------------------------------------------------------------------
바디 태그 안에 소스를 넣어주어도 된다.
------------------------------------------------------------------------------
<body oncontextmenu = "reutrn false" ondragstart = "return false" onselectstart = "return false">
------------------------------------------------------------------------------
팝업창인 경우 새로고침(F5키) 막기 기능은 아래와 같이 자바스크립트 코드에 삽입한다.
------------------------------------------------------------------------------
if(event.keyCode == 116) {
event.keyCode = 0;
return false;
}
------------------------------------------------------------------------------
'Web' 카테고리의 다른 글
googling (0) | 2014.10.28 |
---|---|
session and cookie (0) | 2014.10.27 |
Web conditions and encoding types (0) | 2014.10.24 |
HTTP and fabricating data using paros (0) | 2014.10.22 |
The basic knowledge of web cracking (0) | 2014.10.21 |