Add vpatch-CVE-2025-1661 rule and test#1765
Add vpatch-CVE-2025-1661 rule and test#1765crowdsec-automation wants to merge 4 commits intomasterfrom
Conversation
|
Hello @crowdsec-automation and thank you for your contribution! ❗ It seems that the following scenarios are not part of the 'crowdsecurity/appsec-virtual-patching' collection: 🔴 crowdsecurity/vpatch-CVE-2025-1661 🔴 |
|
Hello @crowdsec-automation and thank you for your contribution! I'm a bot that helps maintainers to validate scenarios and ensure they include all the required information. The following items have errors: crowdsecurity/crs-exclusion-plugin-cpanel:
crowdsecurity/crs-exclusion-plugin-dokuwiki:
crowdsecurity/crs-exclusion-plugin-drupal:
crowdsecurity/crs-exclusion-plugin-nextcloud:
crowdsecurity/crs-exclusion-plugin-phpbb:
crowdsecurity/crs-exclusion-plugin-phpmyadmin:
crowdsecurity/crs-exclusion-plugin-wordpress:
crowdsecurity/crs-exclusion-plugin-xenforo:
Mitre ATT&CKInformation about mitre attack can be found here.
Expected format is (where labels:
classification:
- attack.TXXXXCVEsIf your scenario covers a specific CVE (Common Vulnerabilities and Exposures), please add it. Expected format is (where labels:
classification:
- cve.CVE-XXX-XXXBehaviorsPlease identify the behavior(s) your scenario is targeting. You can find the list of available behaviors here. Expected format is (where labels:
behavior: <behavior>See the labels documentation for more information. |
This rule detects exploitation attempts for CVE-2025-1661, an unauthenticated local file inclusion (LFI) vulnerability in the HUSKY Products Filter Professional for WooCommerce WordPress plugin. The attack is performed by sending a POST request to
/wp-admin/admin-ajax.phpwith thetemplateparameter containing directory traversal sequences (e.g.,../../..)./wp-admin/admin-ajax.php, usinglowercaseandurldecodetransforms to ensure normalization and case insensitivity.templateargument in the query string, again normalizing withlowercaseandurldecode, and matches if it contains the directory traversal pattern'../'.The test config and nuclei template simulate the attack and expect a 403 response, confirming the rule's blocking behavior.
Validation Checklist:
value:fields are lowercase.lowercaseandurldecode.match.valuecontains capital letters.containsinstead ofregexfor the traversal pattern.