forked from projectdiscovery/nuclei-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto WordPress Plugins Update [Sat Nov 4 04:18:55 UTC 2023] :robot:
- Loading branch information
1 parent
e780df9
commit 61525ec
Showing
5 changed files
with
53 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
5.1.0 | ||
5.1.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
1.8.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
6.7.0 | ||
6.7.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
id: wordpress-hostinger | ||
|
||
info: | ||
name: Hostinger Detection | ||
author: ricardomaia | ||
severity: info | ||
reference: | ||
- https://wordpress.org/plugins/hostinger/ | ||
metadata: | ||
plugin_namespace: hostinger | ||
wpscan: https://wpscan.com/plugin/hostinger | ||
tags: tech,wordpress,wp-plugin,top-100,top-200 | ||
|
||
requests: | ||
- method: GET | ||
|
||
path: | ||
- "{{BaseURL}}/wp-content/plugins/hostinger/readme.txt" | ||
|
||
payloads: | ||
last_version: helpers/wordpress/plugins/hostinger.txt | ||
|
||
extractors: | ||
- type: regex | ||
part: body | ||
internal: true | ||
name: internal_detected_version | ||
group: 1 | ||
regex: | ||
- '(?i)Stable.tag:\s?([\w.]+)' | ||
|
||
- type: regex | ||
part: body | ||
name: detected_version | ||
group: 1 | ||
regex: | ||
- '(?i)Stable.tag:\s?([\w.]+)' | ||
|
||
matchers-condition: or | ||
matchers: | ||
- type: dsl | ||
name: "outdated_version" | ||
dsl: | ||
- compare_versions(internal_detected_version, concat("< ", last_version)) | ||
|
||
- type: regex | ||
part: body | ||
regex: | ||
- '(?i)Stable.tag:\s?([\w.]+)' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters