mirror of
https://github.com/projectdiscovery/nuclei-templates.git
synced 2026-01-31 15:53:33 +08:00
Added template for detect-woocommerce
This commit is contained in:
28
detect-woocommerce.yaml
Normal file
28
detect-woocommerce.yaml
Normal file
@@ -0,0 +1,28 @@
|
||||
id: detect-woocommerce
|
||||
|
||||
info:
|
||||
name: WooCommerce Plugin Detection
|
||||
author: aastikgakhar
|
||||
severity: info
|
||||
description: |
|
||||
Detects if the WooCommerce plugin is installed on a website by checking for its readme file or other identifying markers.
|
||||
tags: e-commerce, wordpress, woocommerce
|
||||
|
||||
http:
|
||||
- method: GET
|
||||
path:
|
||||
- "{{BaseURL}}/wp-content/plugins/woocommerce/readme.txt"
|
||||
- "{{BaseURL}}/wp-content/plugins/woocommerce/assets/css/woocommerce.css"
|
||||
|
||||
matchers-condition: or
|
||||
matchers:
|
||||
- type: status
|
||||
status:
|
||||
- 200
|
||||
- type: word
|
||||
words:
|
||||
- "WooCommerce"
|
||||
part: body
|
||||
- type: regex
|
||||
regex:
|
||||
- "WooCommerce Plugin"
|
||||
Reference in New Issue
Block a user