وضائف الأكواد الثلاث :
الكود الأول : تعطيل CTRL + U وهي صفحة السورس او المصدر
الكود الثاني : تعطيل كلك يمين ( زر الفأرة الأيمن )
الكود الثالث : تعطيل او منع النسخ
طريقة التركيب :
انسخ الأكواد والصقها اسفل
</body>
او يمكنك إضافتها في أداة هتمل
الكود الأول :
<!-- High Security -->
<script type="text/javascript">
function mischandler(){
return false;
}
function mousehandler(e){
var myevent = (isNS) ? e : event;
var eventbutton = (isNS) ? myevent.which : myevent.button;
if((eventbutton==2)||(eventbutton==3)) return false;
}
document.oncontextmenu = mischandler;
document.onmousedown = mousehandler;
document.onmouseup = mousehandler;
var isCtrl = false;
document.onkeyup=function(e)
{
if(e.which == 17)
isCtrl=false;
}
document.onkeydown=function(e)
{
if(e.which == 17)
isCtrl=true;
if((e.which == 85) || (e.which == 67) && isCtrl == true)
{
// alert(‘Keyboard shortcuts are cool!’);
return false;
}
}
</script>
الكود الثاني :
<SCRIPT LANGUAGE="JavaScript1.1">
function right(e) {
if (navigator.appName == 'Netscape' &&
(e.which == 3 || e.which == 2))
return false;
else if (navigator.appName == 'Microsoft Internet Explorer' &&
(event.button == 2 || event.button == 3)) {
alert(".:H.I.G.H.S.E.C.U.R.I.T.Y:.");
return false;
}
return true;
}
document.onmousedown=right;
document.onmouseup=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (document.layers) window.captureEvents(Event.MOUSEUP);
window.onmousedown=right;
window.onmouseup=right;
// End -->
</script>
الكود الثالث :
<!-- High Security -->
<SCRIPT>
return false;
}
function noleftclick(e)
{
if (window.Event)
{
if (e.which == 2 || e.which == 3)
return false;
}
else
if (event.button == 2 || event.button == 1)
{
event.cancelBubble = true
event.returnValue = false;
return false;
}
}
document.oncontextmenu = nocontextmenu;
document.onmousedown = noleftclick;
</SCRIPT>
وسلامتكم
0 التعليقات :
إرسال تعليق