7
I Use This!
Moderate Activity

Commits : Listings

Analyzed about 4 hours ago. based on code collected about 4 hours ago.
Dec 02, 2024 — Dec 02, 2025
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Fix regex for test More... about 1 year ago
Merge pull request #3307 from gberkes/v3/cppcheck_v2_16_upgrade More... about 1 year ago
Fix: Add false positive cppcheck-suppress for compatibility with updated cppcheck version More... about 1 year ago
Align TIME_MON variable's behavior More... about 1 year ago
Merge pull request #3298 from airween/v3/sethostnamefix More... about 1 year ago
Add condition before set hostname; move setRequestHostName() before processConnection() More... about 1 year ago
Merge pull request #3287 from hnakamur/fix_modsecurity-regression-test-secremoterules.txt_url_in_example More... about 1 year ago
Merge pull request #3291 from hnakamur/add_test_regression_rules More... about 1 year ago
Add regression rules for test More... about 1 year ago
Fix modsecurity-regression-test-secremoterules.txt URL in example More... about 1 year ago
Merge pull request #3283 from eduar-hte/cppcheck2142 More... about 1 year ago
Remove no longer needed cppcheck inline suppressions. More... about 1 year ago
Make GeoLookup::debug function static (and non-member), as suggested by cppcheck. More... about 1 year ago
Replace usage of sscanf with strtol to remove cppcheck inline suppression More... about 1 year ago
Remove cppcheck suppression by replacing use of local variable to alias this->m_variables - The name of the local variable would clash with the namespace of the same name, which may have lead cppcheck to think the variable was not used. More... about 1 year ago
Use initialization list to initialize m_service - This is correct because base class is initialized before members are initialized. - Removes cppcheck suppression by addressing reported issue. - Leverage C++11's 'default member initializer' to initialize m_provider & m_demandsPassword and address Sonarcloud issue. More... about 1 year ago
Avoid this unnecessary copy by using a "const" reference. - Reported by Sonarcloud More... about 1 year ago
Refactor to remove duplicate code in ValidateSchema & ValidateDTD - Reported by Sonarcloud More... about 1 year ago
Merge pull request #3280 from eduar-hte/range-checked-at More... about 1 year ago
Merge pull request #3253 from eduar-hte/rule-message More... about 1 year ago
Merge pull request #3254 from eduar-hte/make_shared More... about 1 year ago
Merge pull request #3266 from airween/v3/modsecdefconf More... about 1 year ago
chore: add 'log' action to rule 200005 More... about 1 year ago
Merge pull request #3264 from xuruidong/logo2 More... about 1 year ago
docs: add a logo picture for github dark theme More... about 1 year ago
Minor codebase improvements suggested by Sonarcloud - src/modsecurity.cc - Replace the redundant type with "auto". - src/transaction.cc - Avoid this unnecessary copy by using a "const" reference. - test/common/custom_debug_log.cc - Use "=default" instead of the default implementation of this special member functions. - Removed the unnecessary destructor override instead. - Annotate this function with "override" or "final". - Removed the unnecessary destructor override instead. - Remove this "const" qualifier from the return type in all declarations. - test/common/modsecurity_test_context.h - Replace the redundant type with "auto". - test/regression/regression.cc - Use the "nullptr" literal. - Replace this declaration by a structured binding declaration. - Replace "reinterpret_cast" with a safer operation. More... about 1 year ago
Simplified lifetime management of tests - Addresses Sonarcloud issues: - Rewrite the code so that you no longer need this "delete". - Make the type of this variable a reference-to-const. More... about 1 year ago
Merge pull request #3248 from eduar-hte/simplified-constructors More... about 1 year ago
Simplify and reduce code duplication in Transaction constructors - Leverage delegating constructor to avoid code duplication between the two available Transaction constructors. - The constructor without 'id' argument delegates to the one that receives it by providing `nullptr` as a value, which is used to flag that an id needs to be generated. - Simplified constructor by removing member initialization where the default constructor will be invoked. More... about 1 year ago
Merge pull request #3247 from airween/v3/master More... about 1 year ago