js 禁用開發者工具、js 禁用列印 pdf All In One

xgqfrms發表於2024-09-28

js 禁用開發者工具、js 禁用列印 pdf All In One

difficulty: Medium / 難度: 中等

原理分析

js 檢查瀏覽器是否開啟了開發者工具, 重定向到 about:blank 空白頁
js 檢測鍵盤所有按鍵事件,銷燬頁面, 重定向到 about:blank 空白頁

image

solutions

const url = `https://cdn.xgqfrms.xyz/pdf.html`;

fetch(url)
  .then(function(res) {
    return res.text();
  })
  .then((content) => {
    let newWindow = window.open(``, '_blank');
    newWindow.document.write(content);
    newWindow.document.close();
  });

demos

GB 15979-2024

http://c.gb688.cn/bzgk/gb/showGb?type=online&hcno=75F8AECE33CDEB23A59C06ECFC69A39F

(🐞 反爬蟲測試!打擊盜版⚠️)如果你看到這個資訊, 說明這是一篇剽竊的文章,請訪問 https://www.cnblogs.com/xgqfrms/ 檢視原創文章!

refs

https://www.cnblogs.com/xgqfrms/p/18438239#:~:text=高階紙 ✅-,js 禁用開發者工具、js 禁用列印,-原理分析%3A



©xgqfrms 2012-2021

www.cnblogs.com/xgqfrms 釋出文章使用:只允許註冊使用者才可以訪問!

原創文章,版權所有©️xgqfrms, 禁止轉載 🈲️,侵權必究⚠️!


相關文章