Zyxel Redirect Blocker

Blocks Zyxel redirecting to HTTPS

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

ستحتاج إلى تثبيت إضافة مثل 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);
    };
})();