Netgate Discussion Forum
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Search
    • Register
    • Login

    Snort 2.9.5.5 pkg. v3.0.0 – Update Released

    Scheduled Pinned Locked Moved pfSense Packages
    67 Posts 14 Posters 25.2k Views
    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.
    • bmeeksB
      bmeeks
      last edited by

      @marcelloc:

      I've got this after updating two boxes.

      Is it a normal behavior?

      update log

      Starting rules update...  Time: 2013-12-13 00:03:01
      	Downloading Snort VRT md5 file 'snortrules-snapshot-2946.tar.gz.md5'...
      	Checking Snort VRT md5 file...
      	There is a new set of Snort VRT rules posted.
      	Downloading file 'snortrules-snapshot-2946.tar.gz'...
      	Done downloading rules file.
      	Downloading Snort GPLv2 Community Rules md5 file 'community-rules.tar.gz.md5'...
      	Checking Snort GPLv2 Community Rules md5.
      	There is a new set of Snort GPLv2 Community Rules posted.
      	Downloading file 'community-rules.tar.gz'...
      	Done downloading Snort GPLv2 Community Rules file.
      	Extracting and installing Snort GPLv2 Community Rules...
      	Installation of Snort GPLv2 Community Rules completed.
      	Downloading Emerging Threats Open md5 file 'emerging.rules.tar.gz.md5'...
      	Checking Emerging Threats Open md5.
      	There is a new set of Emerging Threats Open rules posted.
      	Downloading file 'emerging.rules.tar.gz'...
      	Done downloading Emerging Threats Open rules file.
      	Extracting and installing Emerging Threats Open rules...
      	Installation of Emerging Threats Open rules completed.
      	Extracting and installing Snort VRT rules...
      	Using Snort VRT precompiled SO rules for FreeBSD-8-1 ...
      	Installation of Snort VRT rules completed.
      	Copying new config and map files...
      	Updating rules configuration for: WAN ...
      	Restarting Snort to activate the new set of rules...
      	Snort has restarted with your new set of rules.
      The Rules update has finished.  Time: 2013-12-13 00:05:19
      
      Starting rules update...  Time: 2013-12-13 10:43:23
      	Extracting and installing Snort GPLv2 Community Rules...
      	Installation of Snort GPLv2 Community Rules completed.
      	Extracting and installing Emerging Threats Open rules...
      	Installation of Emerging Threats Open rules completed.
      	Copying new config and map files...
      	Updating rules configuration for: WAN ...
      The Rules update has finished.  Time: 2013-12-13 10:44:30
      

      But gui shows no vrt rules downloaded

      No, this is not normal.  Looks like the update is downloading the wrong rule version.  It should be downloading the file snortrules-snapshot-2955.tar.gz instead of snortrules-snapshot-2946.tar.gz.

      Look in the snort_check_for_rule_updates.php file, and just a bit down from the top is a section where it parses the Snort version (and thus the rule to download) directly from the Snort binary.  Wonder if that part is not working, or you have an old version of the file?

      Here is the section of code:

      /* Grab the Snort binary version programmatically and use it to construct */
      /* the proper Snort VRT rules tarball and md5 filenames.                  */
      exec("/usr/local/bin/snort -V 2>&1 |/usr/bin/grep Version | /usr/bin/cut -c20-26", $snortver);
      // Save the version with decimal delimiters for use in extracting the rules
      $snort_version = $snortver[0];
      // Create a collapsed version string for use in the tarball filename
      $snortver[0] = str_replace(".", "", $snortver[0]);
      $snort_filename = "snortrules-snapshot-{$snortver[0]}.tar.gz";
      $snort_filename_md5 = "{$snort_filename}.md5";
      $snort_rule_url = VRT_DNLD_URL;
      
      

      If your file looks like the above, then try hardcoding the $snort_filename variable to "snortrules-snapshot-2955.tar.gz".  Let me know what you find.  This should not happen, so I would like to make sure any software bug is fixed.

      Bill

      1 Reply Last reply Reply Quote 0
      • D
        digdug3
        last edited by

        Another vote for Suricata. Would be great to have real IPS/IDS!

        (btw. my VRT rules are updated properly)

        1 Reply Last reply Reply Quote 0
        • J
          jasonlitka
          last edited by

          Has anyone else seen http_inspect going ABSOLUTELY nuts and just blocking pretty much everything after this upgrade?  I'm running the "Balanced" policy and none of the alerts below ever showed up under the 2.9.4.6 package.

          (http_inspect) UNKNOWN METHOD
          (http_inspect) NO CONTENT-LENGTH OR TRANSFER-ENCODING IN HTTP RESPONSE
          (http_inspect) INVALID CONTENT-LENGTH OR CHUNK SIZE
          (http_inspect) BARE BYTE UNICODE ENCODING
          (http_inspect) IIS UNICODE CODEPOINT ENCODING
          (http_inspect) DOUBLE DECODING ATTACK

          I can break anything.

          1 Reply Last reply Reply Quote 0
          • BBcan177B
            BBcan177 Moderator
            last edited by

            I had these two this morning

            (http_inspect) MULTIPLE ENCODINGS WITHIN JAVASCRIPT OBFUSCATED DATA
            (http_inspect) UNESCAPED SPACE IN HTTP URI

            These are already  in my WAN suppress for too many false positives.

            #(http_inspect) SIMPLE REQUEST
            suppress gen_id 119, sig_id 32
            #(http_inspect) UNKNOWN METHOD
            suppress gen_id 119, sig_id 31
            #(http_inspect) INVALID CONTENT-LENGTH OR CHUNK SIZE
            suppress gen_id 120, sig_id 8
            #(http_inspect) NO CONTENT-LENGTH OR TRANSFER-ENCODING IN HTTP RESPONSE
            suppress gen_id 120, sig_id 3
            #(http_inspect) DOUBLE DECODING ATTACK
            suppress gen_id 119, sig_id 2
            #(http_inspect) HTTP RESPONSE GZIP DECOMPRESSION FAILED
            suppress gen_id 120, sig_id 6

            "Experience is something you don't get until just after you need it."

            Website: http://pfBlockerNG.com
            Twitter: @BBcan177  #pfBlockerNG
            Reddit: https://www.reddit.com/r/pfBlockerNG/new/

            1 Reply Last reply Reply Quote 0
            • J
              jasonlitka
              last edited by

              I'm also having some issues with the sensitive data feature.  I enabled it for credit card data, set the threshold to 1, and told it to mask the card numbers, but it doesn't seem to be alerting or replacing the text when I email a bunch of test CC numbers to a Gmail account.  Is there something I'm missing?

              I can break anything.

              1 Reply Last reply Reply Quote 0
              • marcellocM
                marcelloc
                last edited by

                @Jason:

                I'm also having some issues with the sensitive data feature.  I enabled it for credit card data, set the threshold to 1, and told it to mask the card numbers, but it doesn't seem to be alerting or replacing the text when I email a bunch of test CC numbers to a Gmail account.  Is there something I'm missing?

                If you're sending via ssl, snort will not be able to "decode" it.

                Treinamentos de Elite: http://sys-squad.com

                Help a community developer! ;D

                1 Reply Last reply Reply Quote 0
                • marcellocM
                  marcelloc
                  last edited by

                  @bmeeks:

                  Starting rules update...  Time: 2013-12-13 00:03:01
                  Starting rules update...  Time: 2013-12-13 10:43:23
                  	Extracting and installing Snort GPLv2 Community Rules...
                  	Installation of Snort GPLv2 Community Rules completed.
                  	Extracting and installing Emerging Threats Open rules...
                  	Installation of Emerging Threats Open rules completed.
                  	Copying new config and map files...
                  	Updating rules configuration for: WAN ...
                  The Rules update has finished.  Time: 2013-12-13 10:44:30
                  

                  This is the update log called package update.

                  The scripts gets the right version, I'll try to update again and feedback.

                  Treinamentos de Elite: http://sys-squad.com

                  Help a community developer! ;D

                  1 Reply Last reply Reply Quote 0
                  • ?
                    A Former User
                    last edited by

                    @BBcan17:

                    I had these two this morning

                    (http_inspect) MULTIPLE ENCODINGS WITHIN JAVASCRIPT OBFUSCATED DATA
                    (http_inspect) UNESCAPED SPACE IN HTTP URI

                    These are already  in my WAN suppress for too many false positives.

                    #(http_inspect) SIMPLE REQUEST
                    suppress gen_id 119, sig_id 32
                    #(http_inspect) UNKNOWN METHOD
                    suppress gen_id 119, sig_id 31
                    #(http_inspect) INVALID CONTENT-LENGTH OR CHUNK SIZE
                    suppress gen_id 120, sig_id 8
                    #(http_inspect) NO CONTENT-LENGTH OR TRANSFER-ENCODING IN HTTP RESPONSE
                    suppress gen_id 120, sig_id 3
                    #(http_inspect) DOUBLE DECODING ATTACK
                    suppress gen_id 119, sig_id 2
                    #(http_inspect) HTTP RESPONSE GZIP DECOMPRESSION FAILED
                    suppress gen_id 120, sig_id 6

                    All bottom ones are false positives, don't worry about them. I'll be updating my recommended lists in a couple of days, since I'm waiting for the FPs to settle down.
                    The two I'm not sure are these:
                    (http_inspect) MULTIPLE ENCODINGS WITHIN JAVASCRIPT OBFUSCATED DATA
                    (http_inspect) UNESCAPED SPACE IN HTTP URI
                    can't say if they are FPs unless you have a gen_id and sig_id to go with them.

                    1 Reply Last reply Reply Quote 0
                    • marcellocM
                      marcelloc
                      last edited by

                      @marcelloc:

                      The scripts gets the right version, I'll try to update again and feedback.

                      Via gui, I'm getting 504 erro but via snort_check_for_rule_updates.php it worked.

                      I've tried via gui using chrome and firefox.

                      I'll check the code to see if I find something.

                      Starting rules update...  Time: 2013-12-13 16:04:22
                      	Downloading Snort VRT rules md5 file snortrules-snapshot-2955.tar.gz.md5...
                      	Checking Snort VRT rules md5 file...
                      	There is a new set of Snort VRT rules posted.
                      	Downloading file 'snortrules-snapshot-2955.tar.gz'...
                      	Snort VRT rules md5 download failed.
                      	Server returned error code 504.
                      	Snort VRT rules will not be updated.
                      	Downloading Snort GPLv2 Community Rules md5 file community-rules.tar.gz.md5...
                      	Checking Snort GPLv2 Community Rules md5 file...
                      	Snort GPLv2 Community Rules are up to date.
                      	Downloading Emerging Threats Open rules md5 file emerging.rules.tar.gz.md5...
                      	Checking Emerging Threats Open rules md5 file...
                      	Emerging Threats Open rules are up to date.
                      The Rules update has finished.  Time: 2013-12-13 16:04:48
                      
                      	Done downloading rules file.
                      	Downloading Snort GPLv2 Community Rules md5 file community-rules.tar.gz.md5...
                      	Checking Snort GPLv2 Community Rules md5 file...
                      	Snort GPLv2 Community Rules are up to date.
                      	Downloading Emerging Threats Open rules md5 file emerging.rules.tar.gz.md5...
                      	Checking Emerging Threats Open rules md5 file...
                      	Emerging Threats Open rules are up to date.
                      	Extracting and installing Snort VRT rules...
                      	Using Snort VRT precompiled SO rules for FreeBSD-8-1 ...
                      	Installation of Snort VRT rules completed.
                      	Copying new config and map files...
                      	Updating rules configuration for: WAN ...
                      	Restarting Snort to activate the new set of rules...
                      	Snort has restarted with your new set of rules.
                      The Rules update has finished.  Time: 2013-12-13 16:06:34
                      

                      snort_update_rules.png
                      snort_update_rules.png_thumb
                      snort_check_for_update_rule.png_thumb
                      snort_check_for_update_rule.png

                      Treinamentos de Elite: http://sys-squad.com

                      Help a community developer! ;D

                      1 Reply Last reply Reply Quote 0
                      • BBcan177B
                        BBcan177 Moderator
                        last edited by

                        I am not receiving errors from pfSense Snort but I have been seeing 504 on Security Onion. Errors are around the time of 7:00AM UTC or 2:00AM EST. Maybe there is too much traffic hitting www.snort.org?

                        jflsakfja - http Inspect -

                        (http_inspect) MULTIPLE ENCODINGS WITHIN JAVASCRIPT OBFUSCATED DATA
                        120:11

                        (http_inspect) UNESCAPED SPACE IN HTTP URI
                        119:33

                        "Experience is something you don't get until just after you need it."

                        Website: http://pfBlockerNG.com
                        Twitter: @BBcan177  #pfBlockerNG
                        Reddit: https://www.reddit.com/r/pfBlockerNG/new/

                        1 Reply Last reply Reply Quote 0
                        • bmeeksB
                          bmeeks
                          last edited by

                          @BBcan17:

                          I am not receiving errors from pfSense Snort but I have been seeing 504 on Security Onion. Errors are around the time of 7:00AM UTC or 2:00AM EST. Maybe there is too much traffic hitting www.snort.org?

                          jflsakfja - http Inspect -

                          (http_inspect) MULTIPLE ENCODINGS WITHIN JAVASCRIPT OBFUSCATED DATA
                          120:11

                          (http_inspect) UNESCAPED SPACE IN HTTP URI
                          119:33

                          I, too, occasionally get 504 errors from Snort.org.  I cut those down to a tiny trickle by changing my update time to 01:30 and 13:30 from the default of 00:03.  I notice I did get a 504 error last night, but when I manually tried this morning it worked.

                          Bill

                          1 Reply Last reply Reply Quote 0
                          • bmeeksB
                            bmeeks
                            last edited by

                            @marcelloc:

                            @marcelloc:

                            The scripts gets the right version, I'll try to update again and feedback.

                            Via gui, I'm getting 504 erro but via snort_check_for_rule_updates.php it worked.

                            I've tried via gui using chrome and firefox.

                            I'll check the code to see if I find something.

                            Starting rules update...  Time: 2013-12-13 16:04:22
                            	Downloading Snort VRT rules md5 file snortrules-snapshot-2955.tar.gz.md5...
                            	Checking Snort VRT rules md5 file...
                            	There is a new set of Snort VRT rules posted.
                            	Downloading file 'snortrules-snapshot-2955.tar.gz'...
                            	Snort VRT rules md5 download failed.
                            	Server returned error code 504.
                            	Snort VRT rules will not be updated.
                            	Downloading Snort GPLv2 Community Rules md5 file community-rules.tar.gz.md5...
                            	Checking Snort GPLv2 Community Rules md5 file...
                            	Snort GPLv2 Community Rules are up to date.
                            	Downloading Emerging Threats Open rules md5 file emerging.rules.tar.gz.md5...
                            	Checking Emerging Threats Open rules md5 file...
                            	Emerging Threats Open rules are up to date.
                            The Rules update has finished.  Time: 2013-12-13 16:04:48
                            
                            	Done downloading rules file.
                            	Downloading Snort GPLv2 Community Rules md5 file community-rules.tar.gz.md5...
                            	Checking Snort GPLv2 Community Rules md5 file...
                            	Snort GPLv2 Community Rules are up to date.
                            	Downloading Emerging Threats Open rules md5 file emerging.rules.tar.gz.md5...
                            	Checking Emerging Threats Open rules md5 file...
                            	Emerging Threats Open rules are up to date.
                            	Extracting and installing Snort VRT rules...
                            	Using Snort VRT precompiled SO rules for FreeBSD-8-1 ...
                            	Installation of Snort VRT rules completed.
                            	Copying new config and map files...
                            	Updating rules configuration for: WAN ...
                            	Restarting Snort to activate the new set of rules...
                            	Snort has restarted with your new set of rules.
                            The Rules update has finished.  Time: 2013-12-13 16:06:34
                            

                            In non-GUI mode, output is suppressed because it interferes with the XMLRPC sync process.  I discovered this when I was incorporating the sync feature code you contributed.  The XMLRPC process would error with something about "invalid response" if anything was written to the console during the XML sync calls.  The old rules update code would spew some output to the console.

                            From the log entry, it is attempting to download the correct file.  I think the snort.org servers had some problems earlier today.  I also got a 504 error during the night.

                            Bill

                            1 Reply Last reply Reply Quote 0
                            • BBcan177B
                              BBcan177 Moderator
                              last edited by

                              https://groups.google.com/forum/#!forum/mailing.unix.snort

                              "Experience is something you don't get until just after you need it."

                              Website: http://pfBlockerNG.com
                              Twitter: @BBcan177  #pfBlockerNG
                              Reddit: https://www.reddit.com/r/pfBlockerNG/new/

                              1 Reply Last reply Reply Quote 0
                              • bmeeksB
                                bmeeks
                                last edited by

                                @Jason:

                                I'm also having some issues with the sensitive data feature.  I enabled it for credit card data, set the threshold to 1, and told it to mask the card numbers, but it doesn't seem to be alerting or replacing the text when I email a bunch of test CC numbers to a Gmail account.  Is there something I'm missing?

                                As Marcelloc mentioned, many e-mail clients and servers now use TLS (a form of SSL) to communicate, so Snort cannot see anything in the packets except the IP headers.  That may be what is happening.  Does your e-mail system use TLS?  One tell-tale sign is using ports 995 for POP3 and 465 for SMTP.

                                Bill

                                1 Reply Last reply Reply Quote 0
                                • bmeeksB
                                  bmeeks
                                  last edited by

                                  @BBcan17:

                                  I am not receiving errors from pfSense Snort but I have been seeing 504 on Security Onion. Errors are around the time of 7:00AM UTC or 2:00AM EST. Maybe there is too much traffic hitting www.snort.org?

                                  jflsakfja - http Inspect -

                                  (http_inspect) MULTIPLE ENCODINGS WITHIN JAVASCRIPT OBFUSCATED DATA
                                  120:11

                                  (http_inspect) UNESCAPED SPACE IN HTTP URI
                                  119:33

                                  These are two new configuration parameters added to the http_inspect preprocessor in this release.  Perhaps the defaults are not suitable for your environment.  Try adjusting them.  If several folks can help come up with a suggested set of "good defaults" for some of these settings, I will incorporate them into the package.  Right now, when I add a new GUI configuration for a parameter, I set the defaults to match what is in the posted snort.conf files on snort.org for the current version.

                                  Bill

                                  1 Reply Last reply Reply Quote 0
                                  • ?
                                    A Former User
                                    last edited by

                                    @BBcan17:

                                    I am not receiving errors from pfSense Snort but I have been seeing 504 on Security Onion. Errors are around the time of 7:00AM UTC or 2:00AM EST. Maybe there is too much traffic hitting www.snort.org?

                                    jflsakfja - http Inspect -

                                    (http_inspect) MULTIPLE ENCODINGS WITHIN JAVASCRIPT OBFUSCATED DATA
                                    120:11

                                    (http_inspect) UNESCAPED SPACE IN HTTP URI
                                    119:33

                                    504 could be due to the server being overloaded, it's a gateway (proxy, php failing to respond to nginx/apache) timeout if I'm not mistaken.

                                    Dunno about 120:11, 119:33 is definately not a false positive. If it's getting triggered the uri is not getting parsed correctly, or it's actually triggering on a bad location (eg This is a file.pdf) (should be handled server side, not your side). I haven't come across any of those 2 yet, but I'll keep an eye out for them.

                                    1 Reply Last reply Reply Quote 0
                                    • J
                                      jasonlitka
                                      last edited by

                                      @marcelloc:

                                      @Jason:

                                      I'm also having some issues with the sensitive data feature.  I enabled it for credit card data, set the threshold to 1, and told it to mask the card numbers, but it doesn't seem to be alerting or replacing the text when I email a bunch of test CC numbers to a Gmail account.  Is there something I'm missing?

                                      If you're sending via ssl, snort will not be able to "decode" it.

                                      TLS negotiation is enabled in Exchange, so yeah, it might be connecting to other servers with STARTTLS.  That really limits the usefulness.  Damn…

                                      Should this work on HTTP traffic as well?

                                      I can break anything.

                                      1 Reply Last reply Reply Quote 0
                                      • BBcan177B
                                        BBcan177 Moderator
                                        last edited by

                                        @bmeeks:

                                        Thank you for the positive feedback, and that is a good idea.  Supermule also suggested some time back a sort of "template" system for Snort where you could create a set of configuration templates and then assign one to a specific pfSense box or group of boxes.  The template would have all the settings preset.  I have that idea in my list of future enhancements.  I could probably incorporate your disablesid.conf idea into the same template design.  I'm thinking maybe this would be an add-on package for Snort much like the Snort Dashboard Widget is today.

                                        Bill

                                        Bill,

                                        Does the snort pfsense package use the disablesid.conf file? Are we able to edit the file thru the Diagnostics Edit File or Command Prompt?

                                        "Experience is something you don't get until just after you need it."

                                        Website: http://pfBlockerNG.com
                                        Twitter: @BBcan177  #pfBlockerNG
                                        Reddit: https://www.reddit.com/r/pfBlockerNG/new/

                                        1 Reply Last reply Reply Quote 0
                                        • bmeeksB
                                          bmeeks
                                          last edited by

                                          @BBcan17:

                                          @bmeeks:

                                          Thank you for the positive feedback, and that is a good idea.  Supermule also suggested some time back a sort of "template" system for Snort where you could create a set of configuration templates and then assign one to a specific pfSense box or group of boxes.  The template would have all the settings preset.  I have that idea in my list of future enhancements.  I could probably incorporate your disablesid.conf idea into the same template design.  I'm thinking maybe this would be an add-on package for Snort much like the Snort Dashboard Widget is today.

                                          Bill

                                          Bill,

                                          Does the snort pfsense package use the disablesid.conf file? Are we able to edit the file thru the Diagnostics Edit File or Command Prompt?

                                          No, but it does offer a similar feature in the GUI.  On the RULES tab for an interface, you can click the little X icons next to rules to selectively enable or disable them (basically you are toggling them from their default state in the rule set).  Snort will then permanently remember your choices.  Scroll down to the bottom of the page and there is legend on the left-hand side showing how the icons next to the rules will change as you disable default enabled rules, or enable default disabled rules.  (Hope I typed that correctly…it's confusing to even think about  ;D)

                                          This is not as easy at the moment as say using REGEX in something like PulledPork.  I have an item on my TODO list to add a support package to accomplish this as well as let you create Snort protection "templates" that could then be mass-applied to multiple firewalls.  Some users who manage lots of similarly-configured firewalls have requested such a feature.

                                          Bill

                                          1 Reply Last reply Reply Quote 0
                                          • bmeeksB
                                            bmeeks
                                            last edited by

                                            @Jason:

                                            @marcelloc:

                                            @Jason:

                                            I'm also having some issues with the sensitive data feature.  I enabled it for credit card data, set the threshold to 1, and told it to mask the card numbers, but it doesn't seem to be alerting or replacing the text when I email a bunch of test CC numbers to a Gmail account.  Is there something I'm missing?

                                            If you're sending via ssl, snort will not be able to "decode" it.

                                            TLS negotiation is enabled in Exchange, so yeah, it might be connecting to other servers with STARTTLS.  That really limits the usefulness.  Damn…

                                            Should this work on HTTP traffic as well?

                                            I believe so.  As far as I know, the Sensitive Data preprocessor inspects all traffic regardless of protocol.

                                            Bill

                                            1 Reply Last reply Reply Quote 0
                                            • First post
                                              Last post
                                            Copyright 2025 Rubicon Communications LLC (Netgate). All rights reserved.