Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Whitelist Mode not Working #610

Open
1 task done
smashedr opened this issue Aug 21, 2024 · 0 comments
Open
1 task done

Whitelist Mode not Working #610

smashedr opened this issue Aug 21, 2024 · 0 comments
Assignees
Labels

Comments

@smashedr
Copy link

Is there an existing issue for this?

  • I have searched the existing issues

Describe the bug

I am unable to get the extension to work on Android in Whitelist Mode. This also seems to be the case on Desktop too.

Steps to reproduce

No response

Browser

Firefox

Extension version

4.2.0

Anything else?

Settings:

{
  "enabled": true,
  "renew": {
    "enabled": false,
    "intervalMillis": 600000,
    "onStartup": true
  },
  "customUseragent": {
    "enabled": false,
    "list": []
  },
  "remoteUseragentList": {
    "enabled": false,
    "uri": "",
    "updateIntervalMillis": 3600000
  },
  "jsProtection": {
    "enabled": true
  },
  "generator": {
    "types": [
      "firefox_android",
      "firefox_linux",
      "firefox_mac",
      "firefox_win"
    ],
    "syncOsWithHost": false
  },
  "blacklist": {
    "mode": "whitelist",
    "domains": [
      "localhost",
      "127.0.0.1",
      "ivy.cssnr.com"
    ]
  },
  "stats": {
    "enabled": false
  }
}

Rules:

[
  {
    "id": 1,
    "action": {
      "type": "modifyHeaders",
      "requestHeaders": [
        {
          "operation": "set",
          "header": "User-Agent",
          "value": "Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:128.0) Gecko/20222201 Firefox/128.0"
        }
      ]
    },
    "condition": {
      "resourceTypes": [
        "main_frame",
        "sub_frame",
        "stylesheet",
        "script",
        "image",
        "object",
        "object_subrequest",
        "xmlhttprequest",
        "xslt",
        "ping",
        "beacon",
        "xml_dtd",
        "font",
        "media",
        "websocket",
        "csp_report",
        "imageset",
        "web_manifest",
        "speculative",
        "other"
      ],
      "requestDomains": [
        "localhost",
        "127.0.0.1",
        "ivy.cssnr.com"
      ],
      "initiatorDomains": [
        "localhost",
        "127.0.0.1",
        "ivy.cssnr.com"
      ],
      "excludedInitiatorDomains": [
        "challenges.cloudflare.com"
      ],
      "excludedRequestDomains": [
        "challenges.cloudflare.com"
      ]
    }
  },
  {
    "id": 2,
    "action": {
      "type": "modifyHeaders",
      "requestHeaders": [
        {
          "operation": "remove",
          "header": "Sec-CH-UA"
        },
        {
          "operation": "remove",
          "header": "Sec-CH-UA-Full-Version-List"
        },
        {
          "operation": "set",
          "header": "Sec-CH-UA-Platform",
          "value": "\"Linux\""
        },
        {
          "operation": "set",
          "header": "Sec-CH-UA-Mobile",
          "value": "?0"
        },
        {
          "operation": "remove",
          "header": "Sec-CH-UA-Full-Version"
        },
        {
          "operation": "remove",
          "header": "Sec-CH-UA-Platform-Version"
        }
      ]
    },
    "condition": {
      "resourceTypes": [
        "main_frame",
        "sub_frame",
        "stylesheet",
        "script",
        "image",
        "object",
        "object_subrequest",
        "xmlhttprequest",
        "xslt",
        "ping",
        "beacon",
        "xml_dtd",
        "font",
        "media",
        "websocket",
        "csp_report",
        "imageset",
        "web_manifest",
        "speculative",
        "other"
      ],
      "requestDomains": [
        "localhost",
        "127.0.0.1",
        "ivy.cssnr.com"
      ],
      "initiatorDomains": [
        "localhost",
        "127.0.0.1",
        "ivy.cssnr.com"
      ],
      "excludedInitiatorDomains": [
        "challenges.cloudflare.com"
      ],
      "excludedRequestDomains": [
        "challenges.cloudflare.com"
      ]
    }
  },
  {
    "id": 3,
    "action": {
      "type": "modifyHeaders",
      "responseHeaders": [
        {
          "operation": "set",
          "header": "server-timing",
          "value": "lYFhvKMM;desc=\"eyJjdXJyZW50Ijp7InVzZXJBZ2VudCI6Ik1vemlsbGEvNS4wIChYMTE7IFU7IExpbnV4IHg4Nl82NDsgZW4tVVM7IHJ2OjEyOC4wKSBHZWNrby8yMDIyMjIwMSBGaXJlZm94LzEyOC4wIiwiYnJvd3NlciI6ImZpcmVmb3giLCJvcyI6ImxpbnV4IiwidmVyc2lvbiI6eyJicm93c2VyIjp7Im1ham9yIjoxMjgsImZ1bGwiOiIxMjguMCJ9fX0sImJyYW5kcyI6eyJtYWpvciI6W10sImZ1bGwiOltdfSwicGxhdGZvcm0iOiJMaW51eCIsImlzTW9iaWxlIjpmYWxzZX0_\""
        }
      ]
    },
    "condition": {
      "resourceTypes": [
        "main_frame",
        "sub_frame",
        "stylesheet",
        "script",
        "image",
        "object",
        "object_subrequest",
        "xmlhttprequest",
        "xslt",
        "ping",
        "beacon",
        "xml_dtd",
        "font",
        "media",
        "websocket",
        "csp_report",
        "imageset",
        "web_manifest",
        "speculative",
        "other"
      ],
      "requestDomains": [
        "localhost",
        "127.0.0.1",
        "ivy.cssnr.com"
      ],
      "initiatorDomains": [
        "localhost",
        "127.0.0.1",
        "ivy.cssnr.com"
      ],
      "excludedInitiatorDomains": [
        "challenges.cloudflare.com"
      ],
      "excludedRequestDomains": [
        "challenges.cloudflare.com"
      ]
    }
  }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants