UBlock Origin Lite - Nice adblocker for modern challenges

Discussion in 'privacy general' started by Mrkvonic, Jun 7, 2024.

  1. Sampei Nihira

    Sampei Nihira Registered Member

    Joined:
    Apr 7, 2013
    Posts:
    3,864
    Location:
    Italy
  2. Sampei Nihira

    Sampei Nihira Registered Member

    Joined:
    Apr 7, 2013
    Posts:
    3,864
    Location:
    Italy
    Guys,I would need some information.
    In this latest version of uBlock Origin Lite the choice of filters used remains even after updating the extension version, or, are filters you had disabled selected again?

    I read some feedback on MT and opened a issue.
     
    Last edited: Mar 2, 2025
  3. Sampei Nihira

    Sampei Nihira Registered Member

    Joined:
    Apr 7, 2013
    Posts:
    3,864
    Location:
    Italy
    To check the Strict Blocking of uBlock Origin Lite use this:

    Code:
    2cnt.net
    you will see:


    https://ibb.co/Gfsbhmqb

    the red arrow warns you that there was a "malicious" link blocking that was done by the browser (caused by uBlock Origin Lite).

    If you click with your mouse on what is highlighted by the blue arrow, you will see which list of filters is responsible for the Strict Blocking:


    https://ibb.co/8DsKkyfb
     
    Last edited: Mar 2, 2025
  4. 1PW

    1PW Registered Member

    Joined:
    Apr 2, 2010
    Posts:
    2,367
    Location:
    .
  5. Sampei Nihira

    Sampei Nihira Registered Member

    Joined:
    Apr 7, 2013
    Posts:
    3,864
    Location:
    Italy
    Next version of uBlock origin Lite will support custom DNR rules:

    https://github.com/uBlockOrigin/uBOL-home/releases/tag/uBOLite_2025.601.2131

    It is possible to see that Gorhill radically changes his mind and implements what he should have done long before.

    https://github.com/uBlockOrigin/uBOL-home/discussions/323

    I believe it is difficult (not impossible) to use DNR rules to achieve efficient dynamic filtering.
    Because of the necessary exception rules.

    Much more feasible to get DNR rules to increase the privacy of uBlock Origin Lite with Ping,Beacon...............
    Interesting import/export.

    I think it is easy for many users to use AI,I have already tried,for writing YAML compatible custom DNR rules.
     
  6. 1PW

    1PW Registered Member

    Joined:
    Apr 2, 2010
    Posts:
    2,367
    Location:
    .
  7. Sampei Nihira

    Sampei Nihira Registered Member

    Joined:
    Apr 7, 2013
    Posts:
    3,864
    Location:
    Italy
    Guys I wrote a DNR rule to block Ping,Beacon,CSP.
    As far as I understand,but my IT studies had not included writing DNR rules,so I could be wrong,it is not possible,unfortunately,to block WebRTC.

    0.png


    0a.png

    I will write you the code you should copy it and put it into uBlock Origin Lite and I assume it will turn as in my image into YAML format:

    Code:
    [
      {
        "action": {
          "type": "block"
        },
        "condition": {
          "resourceTypes": [
            "ping",
            "object",
            "csp_report"
          ]
        },
        "id": 1
      }
    ]
    The code to copy works !!!!!! :D:D:D:D:D:D:D

    I will insert the test:

    https://apps.armin.dev/ping-spotter/


    P.S.

    A thank you would be appreciated.;):):thumb:
     
    Last edited: Jun 7, 2025 at 12:30 PM
  8. Bertazzoni

    Bertazzoni Registered Member

    Joined:
    Apr 13, 2018
    Posts:
    750
    Location:
    Milan, Italia
  9. Sampei Nihira

    Sampei Nihira Registered Member

    Joined:
    Apr 7, 2013
    Posts:
    3,864
    Location:
    Italy
    With the help of AI, I added 2 rules that block these 2 tests:

    https://browserleaks.com/proxy


    https://browserleaks.com/webrtc

    if you write more rules later you have to enter an ID with higher sequence number.



    Code:
    [
      {
        "action": {
          "type": "block"
        },
        "condition": {
          "resourceTypes": [
            "ping",
            "object",
            "csp_report"
          ]
        },
        "id": 1
      },
      {
        "action": {
          "type": "block"
        },
        "condition": {
          "urlFilter": "|*/proxy.js",
          "resourceTypes": [
            "script"
          ]
        },
        "id": 2
      },
      {
        "action": {
          "type": "block"
        },
        "condition": {
          "urlFilter": "webrtc",
          "resourceTypes": [
            "script"
          ]
        },
        "id": 3
      }
    ]
    Almost certainly the code above is improvable.
    Any help is appreciated.;):thumb:

    I am satisfied with the improved privacy of uBlock Origin Lite.
     
  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.
    Dismiss Notice