├── LICENSE └── README.md /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 Konstantin K. 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # nids-rule-library 2 | 3 | ## Collection of various open-source and commercial rulesets for NIDS (especially for Suricata and Snort) 4 | 5 | ### Motivation 6 | 7 | This project collects various open-source and commercial available rulesets for NIDS (network intrustion detection systems), especially for Suricata and Snort. The goal of this library is to get an easy overview of various rule sources/providers. 8 | 9 | ### Contribution 10 | 11 | If you would like to add a source you can simply create an issue or a merge request. 12 | 13 | ### Rulesets 14 | 15 | #### Suricata 16 | 17 | * [Proofpoint/Emerging Threats ET Open ruleset](https://rules.emergingthreats.net/open/suricata/rules/) 18 | * [Proofpoint/Emerging Threats ET PRO ruleset](https://www.proofpoint.com/au/products/et-pro-ruleset) 19 | * [Attack Detection from Positive Technologies](https://github.com/ptresearch/AttackDetection) 20 | * [ABUSE CH SSL TLS Cert Blacklist](https://sslbl.abuse.ch/blacklist/sslblacklist_tls_cert.rules) 21 | * [ABUSE CH JA3 Fingerprints](https://sslbl.abuse.ch/blacklist/ja3_fingerprints.rules) 22 | * [ABUSE CH SSL IP Blacklist](https://sslbl.abuse.ch/blacklist/sslipblacklist.rules) 23 | * [ABUSE CH URLhaus](https://urlhaus.abuse.ch/downloads/ids) 24 | * [Etnetera IP blacklist](https://security.etnetera.cz/feeds/etn_aggressive.rules) 25 | * [Quandrantsec Sagan ruleset](https://github.com/beave/sagan-rules/) 26 | * [Travis Green Threat Hunting ruleset](https://raw.githubusercontent.com/travisbgreen/hunting-rules/master/hunting.rules) 27 | * [SecureWorks Security/Malware ruleset](https://www.secureworks.com/contact/) 28 | * [OISF Traffic ID rules](https://openinfosecfoundation.org/rules/trafficid/trafficid.rules) 29 | * CrowdStrike 30 | * [Stamus Networks](https://www.stamus-networks.com/blog/new-open-ruleset-for-detecting-lateral-movement-with-suricata) 31 | 32 | Please also check [Suriata-Update's](https://github.com/OISF/suricata-update/) rule index for more sources. 33 | 34 | #### Snort 35 | 36 | * [Talos Snort Ruleset](https://www.snort.org/talos) 37 | * [Proofpoint/Emerging Threats ET Open ruleset](https://rules.emergingthreats.net/open/snort-2.9.0/rules/) 38 | * [Proofpoint/Emerging Threats ET PRO ruleset](https://www.proofpoint.com/au/products/et-pro-ruleset) 39 | * CrowdStrike 40 | 41 | #### Other feeds 42 | 43 | * [Bambenek OSINT C2 domain list](https://osint.bambenekconsulting.com/feeds/c2-dommasterlist.txt) 44 | --------------------------------------------------------------------------------