ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login

    Content filtering options

    IT Discussion
    opendns content filtering strongarm.io
    15
    47
    3.6k
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • momurdaM
      momurda
      last edited by

      What do you have at the site already?
      Many firewall devices have this stuff built in now.
      I could block anything by category or even strings 'cricket' 'viagra' stuff like that. Any traffic passing through the interface out to the web gets inspected.
      Any requests that use these words get blocked with a warning in the browser and logged.
      Not quite the same as a dns filtering though.

      JaredBuschJ RojoLocoR 2 Replies Last reply Reply Quote 0
      • jmooreJ
        jmoore
        last edited by

        You might look at Clouflare. They have a free option and are hosted. I use them on my websites so been a while since I set them up but I think you can do some filtering and white listing.

        1 Reply Last reply Reply Quote 1
        • JaredBuschJ
          JaredBusch @momurda
          last edited by

          @momurda said in Content filtering options:

          What do you have at the site already?
          Many firewall devices have this stuff built in now.
          I could block anything by category or even strings 'cricket' 'viagra' stuff like that. Any traffic passing through the interface out to the web gets inspected.
          Any requests that use these words get blocked with a warning in the browser and logged.
          Not quite the same as a dns filtering though.

          No, firewalls do not have that. Those are UTM devices. But that is a totally different discussion.

          Also there is no way for most of those devices to block anything HTTPS unless you let the UTM perform MitM on your SSL. This generally causes more problems than it solves.

          1 Reply Last reply Reply Quote 1
          • RojoLocoR
            RojoLoco @momurda
            last edited by

            @momurda said in Content filtering options:

            What do you have at the site already?
            Many firewall devices have this stuff built in now.
            I could block anything by category or even strings 'cricket' 'viagra' stuff like that. Any traffic passing through the interface out to the web gets inspected.
            Any requests that use these words get blocked with a warning in the browser and logged.
            Not quite the same as a dns filtering though.

            There is a crappy Cisco ASA firewall there. Yuck.

            1 Reply Last reply Reply Quote 0
            • momurdaM
              momurda
              last edited by

              Oh that is too bad.

              1 Reply Last reply Reply Quote 0
              • scottalanmillerS
                scottalanmiller
                last edited by

                We use PiHole. Not as comprehensive, but it's low cost and we can control it.

                JaredBuschJ 1 Reply Last reply Reply Quote 1
                • JaredBuschJ
                  JaredBusch @scottalanmiller
                  last edited by

                  @scottalanmiller said in Content filtering options:

                  We use PiHole. Not as comprehensive, but it's low cost and we can control it.

                  But PiHole is not designed to block all domains and only allow a whitelist.

                  scottalanmillerS 1 Reply Last reply Reply Quote 0
                  • scottalanmillerS
                    scottalanmiller @JaredBusch
                    last edited by

                    @jaredbusch said in Content filtering options:

                    @scottalanmiller said in Content filtering options:

                    We use PiHole. Not as comprehensive, but it's low cost and we can control it.

                    But PiHole is not designed to block all domains and only allow a whitelist.

                    For ONLY Whitelist, DansGuardian, then.

                    JaredBuschJ 1 Reply Last reply Reply Quote 0
                    • JaredBuschJ
                      JaredBusch @scottalanmiller
                      last edited by

                      @scottalanmiller said in Content filtering options:

                      @jaredbusch said in Content filtering options:

                      @scottalanmiller said in Content filtering options:

                      We use PiHole. Not as comprehensive, but it's low cost and we can control it.

                      But PiHole is not designed to block all domains and only allow a whitelist.

                      For ONLY Whitelist, DansGuardian, then.

                      Does that do DNS filtering now?

                      scottalanmillerS 1 Reply Last reply Reply Quote 0
                      • scottalanmillerS
                        scottalanmiller @JaredBusch
                        last edited by

                        @jaredbusch said in Content filtering options:

                        @scottalanmiller said in Content filtering options:

                        @jaredbusch said in Content filtering options:

                        @scottalanmiller said in Content filtering options:

                        We use PiHole. Not as comprehensive, but it's low cost and we can control it.

                        But PiHole is not designed to block all domains and only allow a whitelist.

                        For ONLY Whitelist, DansGuardian, then.

                        Does that do DNS filtering now?

                        No, but it does whitelist content filtering, which is what he had asked for. You could point it to a DNS filtering service for an additional layer, of course.

                        1 Reply Last reply Reply Quote 0
                        • SmithErickS
                          SmithErick
                          last edited by

                          Webroot DNS on the endpoints?

                          RojoLocoR 1 Reply Last reply Reply Quote 1
                          • J
                            JackCPickup
                            last edited by

                            DNSFilter and Censornet are products I have used.

                            JaredBuschJ 1 Reply Last reply Reply Quote 1
                            • JaredBuschJ
                              JaredBusch @JackCPickup
                              last edited by

                              @jackcpickup said in Content filtering options:

                              DNSFilter

                              I like this.

                              0_1527164310347_534AC705-D422-48E4-8450-BC0236ED6FC1.png

                              1 Reply Last reply Reply Quote 3
                              • RojoLocoR
                                RojoLoco @SmithErick
                                last edited by

                                @smitherick said in Content filtering options:

                                Webroot DNS on the endpoints?

                                Interesting... I'll have to check into that. We already run Webroot endpoint AV.

                                SmithErickS 1 Reply Last reply Reply Quote 0
                                • RomoR
                                  Romo
                                  last edited by

                                  You can use dnsmasq to achieve what you want. It will block all requests except the domains you choose. You have to add the following to your dnsmasq.conf file.

                                  bogus-priv
                                  domain-needed
                                  no-resolv  # blocks the usage of your resolv.conf file and hosts files, and only allows upstream servers set in this file.
                                  
                                  #  Whitelist - will forward dns request to the following domains
                                  server=/mangolassi.it/1.1.1.1 # Dns to which to forward the allowed request
                                  
                                  
                                  RojoLocoR 1 Reply Last reply Reply Quote 1
                                  • RojoLocoR
                                    RojoLoco @Romo
                                    last edited by

                                    @romo that looks pretty easy, but we need at least 3 different levels of filtering that can be applied to users or groups.

                                    RomoR 1 Reply Last reply Reply Quote 1
                                    • RomoR
                                      Romo @RojoLoco
                                      last edited by

                                      @rojoloco that does change the complexity of the solution then.


                                      Crazy idea, if you have any sort of configuration management tool, you could still do one vm, 3 dnsmasq containers and push manual dns settings via the config-management tool to your users to their respective dns server.

                                      RojoLocoR 1 Reply Last reply Reply Quote 1
                                      • RojoLocoR
                                        RojoLoco @Romo
                                        last edited by

                                        @romo said in Content filtering options:

                                        @rojoloco that does change the complexity of the solution then.


                                        Crazy idea, if you have any sort of configuration management tool, you could still do one vm, 3 dnsmasq containers and push manual dns settings via the config-management tool to your users to their respective dns server.

                                        Looking only at hosted solutions, we have no extraneous hardware at that site and it's a 100% windows shop.

                                        1 Reply Last reply Reply Quote 0
                                        • ObsolesceO
                                          Obsolesce
                                          last edited by Obsolesce

                                          Can you get away with forcing them all to use Internet Explorer? Is that a realistic option?

                                          Or are you 100% set on a paid hosted DNS solution?

                                          RojoLocoR 1 Reply Last reply Reply Quote 0
                                          • RojoLocoR
                                            RojoLoco @Obsolesce
                                            last edited by

                                            @obsolesce said in Content filtering options:

                                            Can you get away with forcing them all to use Internet Explorer? Is that a realistic option?

                                            Or are you 100% set on a paid hosted DNS solution?

                                            They have to use multiple browsers for the testing they do. I'm not necessarily set on a DNS solution, but that seems like it would provide some protection from malicious sites in addition to being able to block time wasters. Hosted and easy to manage are the main goals (hard to fix hardware in India from Atlanta).

                                            ObsolesceO 1 Reply Last reply Reply Quote 0
                                            • 1
                                            • 2
                                            • 3
                                            • 2 / 3
                                            • First post
                                              Last post