Zyxel Redirect Blocker

Blocks Zyxel redirecting to HTTPS

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         Zyxel Redirect Blocker
// @namespace    http://tampermonkey.net/
// @version      1.0.0
// @description  Blocks Zyxel redirecting to HTTPS
// @author       JxxIT
// @match        http://192.168.0.1/*
// @icon         https://info.zyxel.com/hubfs/favicon.ico
// @grant        none
// @run-at       document-start
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    const originalOpen = window.XMLHttpRequest.prototype.open;

    window.XMLHttpRequest.prototype.open = function(method, url, async, user, password) {
        this.addEventListener('load', function() {
            if (url.includes("getWebGuiFlag")) {
                try {
                    const json = JSON.parse(this.responseText);

                    json.HTTP_Redirect_HTTPS = false;
                    json.ABPY_GUI_Customization = false;
                    json.ZYXEL_TT_CUSTOMIZATION = false;

                    const modifiedResponse = JSON.stringify(json);

                    Object.defineProperty(this, 'responseText', {
                        value: modifiedResponse,
                        writable: false,
                        configurable: false,
                        enumerable: false
                    });
                } catch (error) {
                    console.error('Error modifying response:', error);
                }
            }
        });

        return originalOpen.apply(this, arguments);
    };
})();