Live data from Hacker News

Viewing profile — rndomsrmn

rndomsrmn

HN member
Joined
Thu, Nov 02, 2017, 8:02 AM UTC
HN karma
62
Public activity
21 items

About rndomsrmn

No profile information was provided.

Recent public activity

  1. comment
    Comment #26300914

    Websites that use CNAME to forward their main domain to some tracking company, basically give their entire domain away, I don't see how that is a good secure way to track your user…

  2. comment
    Comment #25921727

    https://github.com/notracking/hosts-blocklists Use this for network wide blocking of all sorts of virtual garbage. Not only for safari, but all your locally connected devices.

  3. comment
    Comment #25921389

    You can get even better coverage with the NoTracking lists (dnsmasq/unbound or dnscrypt-proxy) https://github.com/notracking/hosts-blocklists They focus not only on tracking but al…

  4. comment
    Comment #25629796

    You might want to consider checking for hosts listed in https://github.com/notracking/hosts-blocklists This is an excellent merged blocklist, with public whitelist (oisd is fully c…

  5. comment
    Comment #23440038

    Also a ref to: https://github.com/notracking/hosts-blocklists They have a public whitelist and updates are pushed on a daily basis.

  6. comment
    Comment #23245401

    See: https://github.com/notracking/hosts-blocklists#dns-over-http... how Mozilla deals with this. For Chrome this feature seems not to be implemented, making it harder to control y…

  7. comment
    Comment #22535891

    It is possible to use this feature 'in' Pi-Hole, see: https://github.com/notracking/hosts-blocklists/wiki/Install-...

  8. comment
    Comment #22535537

    Dnsmasq 'address=' function is just a substr() call, which is as fast as 'normal' hostname blocking (host == "adhost.com"). No regex magic is required there. You are not able to bl…

  9. comment
    Comment #22535423

    regex is _extremely_ resource inefficient and should not be used with large sets of rules. Dnsmasqs domain redirecting feature (address=/adhost.com/#) is not supported by pihole. I…

  10. comment
    Comment #22535373

    dnscrypt-proxy is already supporting CNAME blocking and full domain based blocking (*.adhost.com), something that is still missing in Pi-Hole.

  11. comment
    Comment #22535102

    A dnscrypt-proxy setup with https://github.com/notracking/hosts-blocklists/tree/master/d... goes a long way! For anything that is not blockable on DNS level one should use uBlock O…

  12. comment
    Comment #22456651

    try hosting your own dnscrypt-proxy in combination with https://github.com/notracking/hosts-blocklists . That will turn off most trackers on your entire network.

  13. comment
    Comment #21564136

    You will know on forehand what the fixed DOH servers will be, how else would you be able to locate them? If for example they will use the 1.1.1.1 DOH instance, you can simply redir…

  14. comment
    Comment #21563267

    uBlock and uMatrix are a perfect addition to a setup with a dns based filtering system, though by themselves alone do not provide a solution for all use cases. Think smarttv's, con…

  15. comment
    Comment #21563243

    Mozilla added a feature to allow users to disable DOH network wide (also supported by the notracking list). Info from notracking: https://github.com/notracking/hosts-blocklists#dns…

  16. comment
    Comment #21560151

    You can also redirect those public dns servers on you router to your local Dnsmasq server with iptables.

  17. comment
    Comment #21560134

    Pihole does not make use of dnsmasq's build in option to block entire domains (address=/ads.com/::). This list is also optimized because hostnames that match a domain filter are no…

  18. story
  19. comment
    Comment #19095018

    Or setup your own very lightweight filtering and caching DNS at home using Dnsmasq and https://github.com/notracking/hosts-blocklists/

  20. comment
    Comment #17710961

    Or https://github.com/notracking/hosts-blocklists that uses a dnsmasq feature to block full domains.

  21. comment
    Comment #15608631

    Or you just use a very basic dnsmasq installation and make use of a list like: https://github.com/notracking/hosts-blocklists that allows you to also block full domains. Been using…