Show HN: Chomper – An Internet Blocker for Linux
1–10 of 13 posts
Re: Show HN: Chomper – An Internet Blocker for Linux
#2However, neither of these programs support Linux, and the only similar program hasn't been developed in over 7 years (http://svn.jklmnop.net/projects/SelfControl.html). So, I wrote Chomper. Any feedback is appreciated, but what's most useful is if you try installing it and tell me if you like it!
Re: Show HN: Chomper – An Internet Blocker for Linux
#3Chomper is an internet blocker for helping prevent procrastination/mindless web surfing. It's in the same vein as Cold Turkey ( https://getcoldturkey.com/ ) or SelfControl ( https://selfcontrolapp.com/ ). However, neither of these programs support Linux, and the only similar program hasn't been developed in over 7 years ( http://svn.jklmnop.net/projects/SelfControl.html ). So, I wrote Chomper. Any feedback is appreci…
Re: Show HN: Chomper – An Internet Blocker for Linux
#4Chomper is an internet blocker for helping prevent procrastination/mindless web surfing. It's in the same vein as Cold Turkey ( https://getcoldturkey.com/ ) or SelfControl ( https://selfcontrolapp.com/ ). However, neither of these programs support Linux, and the only similar program hasn't been developed in over 7 years ( http://svn.jklmnop.net/projects/SelfControl.html ). So, I wrote Chomper. Any feedback is appreci…
How is it better than any Firefox/Chrome extension (like say Leech block)?
1. It's browser independent. You have to import security certificates for each browser, but this is a step which will eventually be automated (https://github.com/aniketpanjwani/chomper/issues/8).
2. In both Firefox and Chrome, you can enter Private Browsing/Incognito mode, where extensions are automatically disabled, so you'll be able to evade blocks. It doesn't matter if you're in incognito mode while Chomper is running - you'll still get blocked.
3. It's usually trivially easy to disable or uninstall browser extensions. Chomper is marginally more difficult to disable when you have root privileges. However, unlike browser extensions, you have the option of tying your hands so that it is entirely impossible to remove a block (https://github.com/aniketpanjwani/chomper#hardcore-mode).
Re: Show HN: Chomper – An Internet Blocker for Linux
#5Re: Show HN: Chomper – An Internet Blocker for Linux
#6Instead of a proxy that does MITM, how about one that uses SNI instead and does TCP-passthru if the domain is not on the blacklist?
Re: Show HN: Chomper – An Internet Blocker for Linux
#7Earlier quoted context omitted.
How is it better than any Firefox/Chrome extension (like say Leech block)?
Great question. 1. It's browser independent. You have to import security certificates for each browser, but this is a step which will eventually be automated ( https://github.com/aniketpanjwani/chomper/issues/8 ). 2. In both Firefox and Chrome, you can enter Private Browsing/Incognito mode, where extensions are automatically disabled, so you'll be able to evade blocks. It doesn't matter if you're in incognito mode wh…
You severely underestimate us procrastinators. We'd sooner wipe our disk than work. ;-)
Re: Show HN: Chomper – An Internet Blocker for Linux
#8Re: Show HN: Chomper – An Internet Blocker for Linux
#9How does the MITM behaviour handle certificate failure? Has this been tested?
There are some websites which due to certificate pinning will not be properly filtered through the proxy (http://docs.mitmproxy.org/en/stable/certinstall.html#certifi...). For example, while Chomper is running, even if Dropbox is not on a blacklist, it probably will not properly sync. Eventually, I'll add the ability to make exceptions for these websites if desired.
It's been ad-hoc tested on my computer and on a fresh Linux installation. There's really no components right now worth unit testing, since it was really just a lot of configuration work. Once I start adding more complicated filter rules, I'll write formal unit tests.
Does that answer your questions?
Re: Show HN: Chomper – An Internet Blocker for Linux
#10Instead of a proxy that does MITM, how about one that uses SNI instead and does TCP-passthru if the domain is not on the blacklist?
I'm not really sure what it means to use SNI and TCP-passthru instead of MITM. Could you expand a bit? In particular, what would be the advantage of this approach? I'm really a novice when it comes to computer networking - I learned everything I know on the topic in the process of creating Chomper.