一分钱买个反F12脚本

本文付费阅读内容 – 超级会员免费

// 禁止按F12调试
document.onkeydown = document.onkeyup = document.onkeypress = function (event) {
	var e = event || window.event || arguments.callee.caller.arguments[0];
	if (e && e.keyCode == 123) {
		mAlert();
		e.returnValue = false;
		return (false);
	}
}
function mAlert() {
	alert(\"F12开发者工具已禁用,如需管理网站,请与管理员联系!\");
}

// 防止鼠标右键浏览器‘检查’操作
setInterval(function () {
	debugger;
}, 100)

// 禁止右键
document.oncontextmenu = function () { return false; };

Tips:配合我的404页面食用更佳。

© 版权声明
THE END
喜欢就支持一下吧
点赞0 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片快捷回复

    暂无评论内容