From e96b93f5f779ed73190ac8b5248cd7efeaa3c0a8 Mon Sep 17 00:00:00 2001 From: Rahul Maini Date: Mon, 9 Jan 2023 20:13:13 +0400 Subject: [PATCH 01/20] Simpler Prototype pollution template --- headless/prototype-pollution-check.yaml | 147 +++++++++++------------- 1 file changed, 68 insertions(+), 79 deletions(-) diff --git a/headless/prototype-pollution-check.yaml b/headless/prototype-pollution-check.yaml index 94645993f4d..02abe08509a 100644 --- a/headless/prototype-pollution-check.yaml +++ b/headless/prototype-pollution-check.yaml @@ -4,98 +4,87 @@ info: name: Prototype Pollution Check author: pdteam severity: medium - reference: - - https://github.com/msrkp/PPScan tags: headless headless: - steps: - - action: setheader - args: - part: response - key: Content-Security-Policy - value: "default-src * 'unsafe-inline' 'unsafe-eval' data: blob:;" - - action: setheader - args: - part: response - key: X-Frame-Options - value: foo - - action: setheader - args: - part: response - key: If-None-Match - value: foo - - action: script - args: - hook: true - code: | - // Hooking code adapted from https://github.com/msrkp/PPScan/blob/main/scripts/content_script.js - () => { - window.alerts = []; - - logger = found => window.alerts.push(found); - - function check() { - loc = location.href; - - if (loc.indexOf("e32a5ec9c99") >= 0 && loc.search("a0def12bce") == -1) { - setTimeout(function() { - if (Object.prototype.e32a5ec9c99 == "ddcb362f1d60") { - logger(location.href); - } - var url = new URL(location.origin + location.pathname); - url.hash = "__proto__[a0def12bce]=ddcb362f1d60&__proto__.a0def12bce=ddcb362f1d60&dummy"; - location = url.href; - }, 5 * 1000); - } else if (loc.search("a0def12bce") != -1) { - setTimeout(function() { - if (Object.prototype.a0def12bce == "ddcb362f1d60") { - logger(location.href); - } - window.close(); - }, 5 * 1000); - } else { - var url = new URL(loc); - url.searchParams.append("__proto__[e32a5ec9c99]", "ddcb362f1d60"); - url.searchParams.append("__proto__.e32a5ec9c99", "ddcb362f1d60"); - location = url.href; - } - } - - window.onload = function() { - if (Object.prototype.e32a5ec9c99 == "ddcb362f1d60" || Object.prototype.a0def12bce == "ddcb362f1d60") { - logger(location.href); - } else { - check(); - } - }; - - var timerID = setInterval(function() { - if (Object.prototype.e32a5ec9c99 == "ddcb362f1d60" || Object.prototype.a0def12bce == "ddcb362f1d60") { - logger(location.href); - clearInterval(timerID); - } - }, 5 * 1000); - } - args: - url: "{{BaseURL}}" + url: "{{BaseURL}}?constructor[prototype][vulnerableprop]=polluted#constructor[prototype][vulnerableprop]=polluted" action: navigate + - action: waitload - action: script - name: alerts + name: extract args: code: | - () => { window.alerts } + () => { + return window.vulnerableprop + } matchers: - type: word - part: alerts + part: extract words: - - "__proto__" + - "polluted" + - steps: + - args: + url: "{{BaseURL}}?constructor.prototype.vulnerableprop=polluted#constructor.prototype.vulnerableprop=polluted" + action: navigate - extractors: - - type: kval - part: alerts - kval: - - alerts + - action: waitload + + - action: script + name: extract2 + args: + code: | + () => { + return window.vulnerableprop + } + + matchers: + - type: word + part: extract2 + words: + - "polluted" + + - steps: + - args: + url: "{{BaseURL}}?__proto__[vulnerableprop]=polluted#__proto__.vulnerableprop=polluted&__proto__[vulnerableprop]=polluted" + action: navigate + + - action: waitload + + - action: script + name: extract3 + args: + code: | + () => { + return window.vulnerableprop + } + + matchers: + - type: word + part: extract3 + words: + - "polluted" + - steps: + - args: + url: "{{BaseURL}}?__proto__.vulnerableprop=polluted" + action: navigate + + - action: waitload + + - action: script + name: extract4 + args: + code: | + () => { + return window.vulnerableprop + } + + matchers: + - type: word + part: extract4 + words: + - "polluted" From 4cefdfbc5d7b590c085fe8bbef188eab94e05a48 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 9 Jan 2023 16:35:23 +0000 Subject: [PATCH 02/20] Auto Generated CVE annotations [Mon Jan 9 16:35:23 UTC 2023] :robot: --- cves/2020/CVE-2020-11110.yaml | 2 +- cves/2020/CVE-2020-35476.yaml | 2 +- cves/2021/CVE-2021-25099.yaml | 7 +++++-- cves/2021/CVE-2021-30128.yaml | 7 ++++++- cves/2021/CVE-2021-41773.yaml | 2 +- cves/2021/CVE-2021-42887.yaml | 2 +- cves/2022/CVE-2022-0786.yaml | 5 ++++- cves/2022/CVE-2022-1595.yaml | 5 ++++- cves/2022/CVE-2022-2314.yaml | 6 ++++-- cves/2022/CVE-2022-23854.yaml | 3 +++ cves/2022/CVE-2022-33891.yaml | 9 ++++++++- cves/2022/CVE-2022-3768.yaml | 4 ++-- cves/2022/CVE-2022-4050.yaml | 7 +++++-- cves/2022/CVE-2022-4260.yaml | 2 +- cves/2022/CVE-2022-42746.yaml | 9 +++++---- cves/2022/CVE-2022-45917.yaml | 9 +++++++-- cves/2022/CVE-2022-46381.yaml | 7 ++++++- exposures/files/svn-wc-db.yaml | 2 +- vulnerabilities/vmware/vmware-nsx-stream-rce.yaml | 2 +- vulnerabilities/zyxel/unauth-lfd-zhttpd.yaml | 2 +- 20 files changed, 67 insertions(+), 27 deletions(-) diff --git a/cves/2020/CVE-2020-11110.yaml b/cves/2020/CVE-2020-11110.yaml index d2971ae099f..389723f1bd3 100644 --- a/cves/2020/CVE-2020-11110.yaml +++ b/cves/2020/CVE-2020-11110.yaml @@ -19,7 +19,7 @@ info: cwe-id: CWE-79 metadata: shodan-query: title:"Grafana" - tags: cve,cve2020,xss,grafana + tags: cve,cve2020,xss,grafana,hackerone requests: - raw: diff --git a/cves/2020/CVE-2020-35476.yaml b/cves/2020/CVE-2020-35476.yaml index 866fd32df3c..ffbdb6309c6 100644 --- a/cves/2020/CVE-2020-35476.yaml +++ b/cves/2020/CVE-2020-35476.yaml @@ -14,7 +14,7 @@ info: cvss-score: 9.8 cve-id: CVE-2020-35476 cwe-id: CWE-78 - tags: cve,cve2020,opentsdb,rce + tags: cve2020,opentsdb,rce,packetstorm,cve requests: - method: GET diff --git a/cves/2021/CVE-2021-25099.yaml b/cves/2021/CVE-2021-25099.yaml index 8759827774f..c1d41a1b3ab 100644 --- a/cves/2021/CVE-2021-25099.yaml +++ b/cves/2021/CVE-2021-25099.yaml @@ -11,10 +11,13 @@ info: - https://wordpress.org/plugins/give/ - https://nvd.nist.gov/vuln/detail/CVE-2021-25099 classification: + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N + cvss-score: 6.1 cve-id: CVE-2021-25099 + cwe-id: CWE-79 metadata: - verified: true - tags: cve,cve2021,wordpress,wp-plugin,wp,xss,give,unauth + verified: "true" + tags: wpscan,cve,wordpress,wp,xss,unauth,cve2021,wp-plugin,give requests: - raw: diff --git a/cves/2021/CVE-2021-30128.yaml b/cves/2021/CVE-2021-30128.yaml index 439728c9a8b..c439f7e542c 100644 --- a/cves/2021/CVE-2021-30128.yaml +++ b/cves/2021/CVE-2021-30128.yaml @@ -8,11 +8,16 @@ info: reference: - https://lists.apache.org/thread.html/rbe8439b26a71fc3b429aa793c65dcc4a6e349bc7bb5010746a74fa1d@%3Ccommits.ofbiz.apache.org%3E - https://nvd.nist.gov/vuln/detail/CVE-2021-30128 + - https://lists.apache.org/thread.html/rb3f5cd65f3ddce9b9eb4d6ea6e2919933f0f89b15953769d11003743%40%3Cdev.ofbiz.apache.org%3E + - https://lists.apache.org/thread.html/rb3f5cd65f3ddce9b9eb4d6ea6e2919933f0f89b15953769d11003743@%3Cdev.ofbiz.apache.org%3E classification: + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H + cvss-score: 9.8 cve-id: CVE-2021-30128 + cwe-id: CWE-502 metadata: - verified: true fofa-query: app="Apache_OFBiz" + verified: "true" tags: cve,cve2021,apache,ofbiz,deserialization,rce requests: diff --git a/cves/2021/CVE-2021-41773.yaml b/cves/2021/CVE-2021-41773.yaml index ddf881088d5..ad139dccdff 100644 --- a/cves/2021/CVE-2021-41773.yaml +++ b/cves/2021/CVE-2021-41773.yaml @@ -19,8 +19,8 @@ info: cve-id: CVE-2021-41773 cwe-id: CWE-22 metadata: - verified: "true" shodan-query: Apache 2.4.49 + verified: "true" tags: cve,cve2021,lfi,rce,apache,misconfig,traversal,kev variables: diff --git a/cves/2021/CVE-2021-42887.yaml b/cves/2021/CVE-2021-42887.yaml index 4e297d02a5f..295b7e5b6d8 100644 --- a/cves/2021/CVE-2021-42887.yaml +++ b/cves/2021/CVE-2021-42887.yaml @@ -10,7 +10,7 @@ info: - https://nvd.nist.gov/vuln/detail/cve-2021-42887 - https://github.com/p1Kk/vuln/blob/main/totolink_ex1200t_login_bypass.md classification: - cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:N + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H cvss-score: 9.8 cve-id: CVE-2021-42887 cwe-id: CWE-287 diff --git a/cves/2022/CVE-2022-0786.yaml b/cves/2022/CVE-2022-0786.yaml index 9024b1d7f74..f397f18fcc8 100644 --- a/cves/2022/CVE-2022-0786.yaml +++ b/cves/2022/CVE-2022-0786.yaml @@ -11,10 +11,13 @@ info: - https://wordpress.org/plugins/kivicare-clinic-management-system/ - https://nvd.nist.gov/vuln/detail/CVE-2022-0786 classification: + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H + cvss-score: 9.8 cve-id: CVE-2022-0786 + cwe-id: CWE-89 metadata: verified: "true" - tags: cve,cve2022,wordpress,wp-plugin,wp,sqli,kivicare-clinic-management-system,unauth + tags: wpscan,wp-plugin,sqli,wordpress,wp,kivicare-clinic-management-system,unauth,cve,cve2022 requests: - raw: diff --git a/cves/2022/CVE-2022-1595.yaml b/cves/2022/CVE-2022-1595.yaml index 9d5329b78fa..d7f4f1ea308 100644 --- a/cves/2022/CVE-2022-1595.yaml +++ b/cves/2022/CVE-2022-1595.yaml @@ -11,10 +11,13 @@ info: - https://wordpress.org/plugins/hc-custom-wp-admin-url/ - https://nvd.nist.gov/vuln/detail/CVE-2022-1595 classification: + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N + cvss-score: 5.3 cve-id: CVE-2022-1595 + cwe-id: CWE-200 metadata: verified: "true" - tags: cve,cve2022,wordpress,wp-plugin,wp,hc-custom-wp-admin-url,unauth + tags: hc-custom-wp-admin-url,unauth,wpscan,cve,cve2022,wordpress,wp-plugin,wp requests: - raw: diff --git a/cves/2022/CVE-2022-2314.yaml b/cves/2022/CVE-2022-2314.yaml index fac0172cbb5..0e0976b2966 100644 --- a/cves/2022/CVE-2022-2314.yaml +++ b/cves/2022/CVE-2022-2314.yaml @@ -11,10 +11,12 @@ info: - https://wordpress.org/plugins/vr-calendar-sync/ - https://nvd.nist.gov/vuln/detail/CVE-2022-2314 classification: + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H + cvss-score: 9.8 cve-id: CVE-2022-2314 metadata: - verified: true - tags: cve,cve2022,wordpress,wp-plugin,wp,rce,vr-calendar-sync,unauth + verified: "true" + tags: cve2022,wordpress,wp,rce,wpscan,cve,wp-plugin,vr-calendar-sync,unauth requests: - raw: diff --git a/cves/2022/CVE-2022-23854.yaml b/cves/2022/CVE-2022-23854.yaml index dd1f30bd82c..a959cdbceb2 100644 --- a/cves/2022/CVE-2022-23854.yaml +++ b/cves/2022/CVE-2022-23854.yaml @@ -12,7 +12,10 @@ info: - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-23854 - https://www.cisa.gov/uscert/ics/advisories/icsa-22-342-02 classification: + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N + cvss-score: 7.5 cve-id: CVE-2022-23854 + cwe-id: CWE-23 metadata: shodan-query: http.html:"InTouch Access Anywhere" verified: "true" diff --git a/cves/2022/CVE-2022-33891.yaml b/cves/2022/CVE-2022-33891.yaml index ffb2b048f2d..709c340a2a3 100644 --- a/cves/2022/CVE-2022-33891.yaml +++ b/cves/2022/CVE-2022-33891.yaml @@ -8,9 +8,16 @@ info: reference: - https://github.com/W01fh4cker/cve-2022-33891 - https://nvd.nist.gov/vuln/detail/CVE-2022-33891 + - https://lists.apache.org/thread/p847l3kopoo5bjtmxrcwk21xp6tjxqlc + - http://packetstormsecurity.com/files/168309/Apache-Spark-Unauthenticated-Command-Injection.html + classification: + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H + cvss-score: 8.8 + cve-id: CVE-2022-33891 + cwe-id: CWE-77 metadata: - verified: "true" shodan-query: title:"Spark Master at" + verified: "true" tags: cve,cve2022,apache,spark,authenticated variables: diff --git a/cves/2022/CVE-2022-3768.yaml b/cves/2022/CVE-2022-3768.yaml index 6a15ca0e439..d4b5b8fb322 100644 --- a/cves/2022/CVE-2022-3768.yaml +++ b/cves/2022/CVE-2022-3768.yaml @@ -6,12 +6,12 @@ info: severity: high description: | The WPSmartContracts WordPress plugin before 1.3.12 does not properly sanitise and escape a parameter before using it in a SQL statement, leading to a SQL injection exploitable by users with a role as low as author - remediation: Fixed in version 1.3.12 reference: - https://wpscan.com/vulnerability/1d8bf5bb-5a17-49b7-a5ba-5f2866e1f8a3 - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3768 - https://nvd.nist.gov/vuln/detail/CVE-2022-3768 - https://cve.report/CVE-2022-3768 + remediation: Fixed in version 1.3.12 classification: cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H cvss-score: 8.8 @@ -19,7 +19,7 @@ info: cwe-id: CWE-89 metadata: verified: "true" - tags: cve,cve2022,wordpress,wp-plugin,wp,sqli,wp-smart-contracts,authenticated + tags: wpscan,wp-plugin,wp,sqli,wp-smart-contracts,authenticated,cve,cve2022,wordpress requests: - raw: diff --git a/cves/2022/CVE-2022-4050.yaml b/cves/2022/CVE-2022-4050.yaml index 12ac0b37702..afce3372454 100644 --- a/cves/2022/CVE-2022-4050.yaml +++ b/cves/2022/CVE-2022-4050.yaml @@ -11,10 +11,13 @@ info: - https://wordpress.org/plugins/joomsport-sports-league-results-management/ - https://nvd.nist.gov/vuln/detail/CVE-2022-4050 classification: + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H + cvss-score: 9.8 cve-id: CVE-2022-4050 + cwe-id: CWE-89 metadata: - verified: true - tags: cve,cve2022,wordpress,wp-plugin,wp,sqli,joomsport-sports-league-results-management,unauth + verified: "true" + tags: cve2022,wp-plugin,joomsport-sports-league-results-management,cve,wordpress,wp,sqli,unauth,wpscan requests: - raw: diff --git a/cves/2022/CVE-2022-4260.yaml b/cves/2022/CVE-2022-4260.yaml index 878c3af3175..b7246416ab4 100644 --- a/cves/2022/CVE-2022-4260.yaml +++ b/cves/2022/CVE-2022-4260.yaml @@ -16,7 +16,7 @@ info: cwe-id: CWE-79 metadata: verified: "true" - tags: cve,cve2022,wordpress,wp-plugin,wp,xss,wp-ban,authenticated + tags: cve,cve2022,wordpress,authenticated,wpscan,wp-plugin,wp,xss,wp-ban requests: - raw: diff --git a/cves/2022/CVE-2022-42746.yaml b/cves/2022/CVE-2022-42746.yaml index adadc0de09a..6ff93c907c1 100644 --- a/cves/2022/CVE-2022-42746.yaml +++ b/cves/2022/CVE-2022-42746.yaml @@ -9,14 +9,15 @@ info: reference: - https://fluidattacks.com/advisories/modestep/ - https://nvd.nist.gov/vuln/detail/CVE-2022-42746 + - https://candidats.net/ classification: - cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N - cvss-score: 5.4 + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N + cvss-score: 6.1 cve-id: CVE-2022-42746 - cwe-id: CWE-80 + cwe-id: CWE-79 metadata: - verified: true shodan-query: http.html:"CandidATS" + verified: "true" tags: cve,cve2022,candidats,xss requests: diff --git a/cves/2022/CVE-2022-45917.yaml b/cves/2022/CVE-2022-45917.yaml index 91179758e9f..9b6c99deec0 100644 --- a/cves/2022/CVE-2022-45917.yaml +++ b/cves/2022/CVE-2022-45917.yaml @@ -11,10 +11,15 @@ info: - https://seclists.org/fulldisclosure/2022/Dec/7 - https://sec-consult.com/vulnerability-lab/advisory/multiple-critical-vulnerabilities-in-ilias-elearning-platform/ - https://github.com/advisories/GHSA-hf6q-rx44-fh6j + classification: + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N + cvss-score: 6.1 + cve-id: CVE-2022-45917 + cwe-id: CWE-601 metadata: - verified: true shodan-query: http.html:"ILIAS" - tags: cve,cve2022,ilias,redirect + verified: "true" + tags: cve,cve2022,ilias,redirect,packetstorm,seclists requests: - method: GET diff --git a/cves/2022/CVE-2022-46381.yaml b/cves/2022/CVE-2022-46381.yaml index 7f4b1bfb6cf..49e6e876c8f 100644 --- a/cves/2022/CVE-2022-46381.yaml +++ b/cves/2022/CVE-2022-46381.yaml @@ -9,9 +9,14 @@ info: reference: - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-46381 - https://github.com/omarhashem123/Security-Research/blob/main/CVE-2022-46381/CVE-2022-46381.txt + classification: + cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N + cvss-score: 6.1 + cve-id: CVE-2022-46381 + cwe-id: CWE-79 metadata: - verified: "true" shodan-query: http.html:"Linear eMerge" + verified: "true" tags: cve,cve2022,xss,emerge,linear requests: diff --git a/exposures/files/svn-wc-db.yaml b/exposures/files/svn-wc-db.yaml index eda792a694b..77a33600851 100644 --- a/exposures/files/svn-wc-db.yaml +++ b/exposures/files/svn-wc-db.yaml @@ -10,7 +10,7 @@ info: metadata: verified: true google-query: intitle:"index of" "wc.db" - tags: exposure,svn,config,files + tags: config,files,msf,exposure,svn requests: - method: GET diff --git a/vulnerabilities/vmware/vmware-nsx-stream-rce.yaml b/vulnerabilities/vmware/vmware-nsx-stream-rce.yaml index 43a046ecd27..3c67c2fc6fd 100644 --- a/vulnerabilities/vmware/vmware-nsx-stream-rce.yaml +++ b/vulnerabilities/vmware/vmware-nsx-stream-rce.yaml @@ -21,7 +21,7 @@ info: verified: true shodan-query: title:"VMware Appliance Management" fofa-query: title="VMware Appliance Management" - tags: vmware,xstream,rce + tags: vmware,xstream,rce,msf variables: lowerrstr: "{{to_lower(rand_text_alpha(6))}}" diff --git a/vulnerabilities/zyxel/unauth-lfd-zhttpd.yaml b/vulnerabilities/zyxel/unauth-lfd-zhttpd.yaml index 99331b2d7ac..79edc1b34c2 100644 --- a/vulnerabilities/zyxel/unauth-lfd-zhttpd.yaml +++ b/vulnerabilities/zyxel/unauth-lfd-zhttpd.yaml @@ -13,7 +13,7 @@ info: metadata: verified: "true" shodan-query: http.html:"VMG1312-B10D" - tags: misconfig,unauth,zyxel,lfi + tags: lfi,msf,misconfig,unauth,zyxel requests: - raw: From a70d984d71f850f82d3fe16269bae748489fe323 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 10 Jan 2023 04:17:59 +0000 Subject: [PATCH 03/20] Auto WordPress Plugins Update [Tue Jan 10 04:17:59 UTC 2023] :robot: --- helpers/wordpress/plugins/elementor.txt | 2 +- helpers/wordpress/plugins/gutenberg.txt | 2 +- helpers/wordpress/plugins/megamenu.txt | 2 +- helpers/wordpress/plugins/polylang.txt | 2 +- helpers/wordpress/plugins/pretty-link.txt | 2 +- helpers/wordpress/plugins/wp-statistics.txt | 2 +- helpers/wordpress/plugins/wp-user-avatar.txt | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/helpers/wordpress/plugins/elementor.txt b/helpers/wordpress/plugins/elementor.txt index 4764627f925..e06d07afe14 100644 --- a/helpers/wordpress/plugins/elementor.txt +++ b/helpers/wordpress/plugins/elementor.txt @@ -1 +1 @@ -3.9.2 \ No newline at end of file +3.10.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/gutenberg.txt b/helpers/wordpress/plugins/gutenberg.txt index de4914e939d..385495e93e4 100644 --- a/helpers/wordpress/plugins/gutenberg.txt +++ b/helpers/wordpress/plugins/gutenberg.txt @@ -1 +1 @@ -14.9.0 \ No newline at end of file +14.9.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/megamenu.txt b/helpers/wordpress/plugins/megamenu.txt index f398a20612a..06a445799fe 100644 --- a/helpers/wordpress/plugins/megamenu.txt +++ b/helpers/wordpress/plugins/megamenu.txt @@ -1 +1 @@ -3.0 \ No newline at end of file +3.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/polylang.txt b/helpers/wordpress/plugins/polylang.txt index f30101c0805..712bd5a680e 100644 --- a/helpers/wordpress/plugins/polylang.txt +++ b/helpers/wordpress/plugins/polylang.txt @@ -1 +1 @@ -3.3 \ No newline at end of file +3.3.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/pretty-link.txt b/helpers/wordpress/plugins/pretty-link.txt index 132d9f7707d..712bd5a680e 100644 --- a/helpers/wordpress/plugins/pretty-link.txt +++ b/helpers/wordpress/plugins/pretty-link.txt @@ -1 +1 @@ -3.2.8 \ No newline at end of file +3.3.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wp-statistics.txt b/helpers/wordpress/plugins/wp-statistics.txt index 1f47cd89690..ff59c07b835 100644 --- a/helpers/wordpress/plugins/wp-statistics.txt +++ b/helpers/wordpress/plugins/wp-statistics.txt @@ -1 +1 @@ -13.2.12 \ No newline at end of file +13.2.13 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wp-user-avatar.txt b/helpers/wordpress/plugins/wp-user-avatar.txt index 689f7fbd336..ae6e65bd968 100644 --- a/helpers/wordpress/plugins/wp-user-avatar.txt +++ b/helpers/wordpress/plugins/wp-user-avatar.txt @@ -1 +1 @@ -4.5.2 \ No newline at end of file +4.5.3 \ No newline at end of file From 2e17cce8675734decdabb5abfb3412e7f5fd7674 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 11 Jan 2023 04:18:26 +0000 Subject: [PATCH 04/20] Auto WordPress Plugins Update [Wed Jan 11 04:18:26 UTC 2023] :robot: --- .../plugins/facebook-for-woocommerce.txt | 2 +- .../plugins/google-listings-and-ads.txt | 2 +- .../plugins/insert-headers-and-footers.txt | 2 +- helpers/wordpress/plugins/jetpack.txt | 2 +- helpers/wordpress/plugins/litespeed-cache.txt | 2 +- helpers/wordpress/plugins/loginpress.txt | 2 +- helpers/wordpress/plugins/mailpoet.txt | 2 +- helpers/wordpress/plugins/ninja-forms.txt | 2 +- helpers/wordpress/plugins/ocean-extra.txt | 2 +- helpers/wordpress/plugins/post-smtp.txt | 2 +- .../plugins/simple-page-ordering.txt | 2 +- .../plugins/webp-converter-for-media.txt | 2 +- helpers/wordpress/plugins/webp-express.txt | 1 + helpers/wordpress/plugins/woocommerce.txt | 2 +- helpers/wordpress/plugins/wordpress-seo.txt | 2 +- helpers/wordpress/plugins/wp-google-maps.txt | 2 +- helpers/wordpress/plugins/wp-reset.txt | 2 +- helpers/wordpress/plugins/wp-statistics.txt | 2 +- .../wordpress/plugins/webp-express.yaml | 49 +++++++++++++++++++ 19 files changed, 67 insertions(+), 17 deletions(-) create mode 100644 helpers/wordpress/plugins/webp-express.txt create mode 100644 technologies/wordpress/plugins/webp-express.yaml diff --git a/helpers/wordpress/plugins/facebook-for-woocommerce.txt b/helpers/wordpress/plugins/facebook-for-woocommerce.txt index 3a8b97174cc..e46454be8c3 100644 --- a/helpers/wordpress/plugins/facebook-for-woocommerce.txt +++ b/helpers/wordpress/plugins/facebook-for-woocommerce.txt @@ -1 +1 @@ -3.0.7 \ No newline at end of file +3.0.8 \ No newline at end of file diff --git a/helpers/wordpress/plugins/google-listings-and-ads.txt b/helpers/wordpress/plugins/google-listings-and-ads.txt index 3b265248683..0501b79e988 100644 --- a/helpers/wordpress/plugins/google-listings-and-ads.txt +++ b/helpers/wordpress/plugins/google-listings-and-ads.txt @@ -1 +1 @@ -2.3.5 \ No newline at end of file +2.3.6 \ No newline at end of file diff --git a/helpers/wordpress/plugins/insert-headers-and-footers.txt b/helpers/wordpress/plugins/insert-headers-and-footers.txt index b9d2bdfd653..703cec9e234 100644 --- a/helpers/wordpress/plugins/insert-headers-and-footers.txt +++ b/helpers/wordpress/plugins/insert-headers-and-footers.txt @@ -1 +1 @@ -2.0.5 \ No newline at end of file +2.0.6 \ No newline at end of file diff --git a/helpers/wordpress/plugins/jetpack.txt b/helpers/wordpress/plugins/jetpack.txt index 37b64dadd4b..ae27ab17bed 100644 --- a/helpers/wordpress/plugins/jetpack.txt +++ b/helpers/wordpress/plugins/jetpack.txt @@ -1 +1 @@ -11.6 \ No newline at end of file +11.7 \ No newline at end of file diff --git a/helpers/wordpress/plugins/litespeed-cache.txt b/helpers/wordpress/plugins/litespeed-cache.txt index 7d3cdbf0dd0..ba09cfd650d 100644 --- a/helpers/wordpress/plugins/litespeed-cache.txt +++ b/helpers/wordpress/plugins/litespeed-cache.txt @@ -1 +1 @@ -5.3.1 \ No newline at end of file +5.3.2 \ No newline at end of file diff --git a/helpers/wordpress/plugins/loginpress.txt b/helpers/wordpress/plugins/loginpress.txt index f5d2a585829..9dbb0c0052e 100644 --- a/helpers/wordpress/plugins/loginpress.txt +++ b/helpers/wordpress/plugins/loginpress.txt @@ -1 +1 @@ -1.6.3 \ No newline at end of file +1.7.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/mailpoet.txt b/helpers/wordpress/plugins/mailpoet.txt index ecedc98d1d5..64b5ae3938a 100644 --- a/helpers/wordpress/plugins/mailpoet.txt +++ b/helpers/wordpress/plugins/mailpoet.txt @@ -1 +1 @@ -4.3.1 \ No newline at end of file +4.4.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/ninja-forms.txt b/helpers/wordpress/plugins/ninja-forms.txt index 37a142c49b2..86f7d611d6f 100644 --- a/helpers/wordpress/plugins/ninja-forms.txt +++ b/helpers/wordpress/plugins/ninja-forms.txt @@ -1 +1 @@ -3.6.14 \ No newline at end of file +3.6.15 \ No newline at end of file diff --git a/helpers/wordpress/plugins/ocean-extra.txt b/helpers/wordpress/plugins/ocean-extra.txt index 703cec9e234..50aea0e7aba 100644 --- a/helpers/wordpress/plugins/ocean-extra.txt +++ b/helpers/wordpress/plugins/ocean-extra.txt @@ -1 +1 @@ -2.0.6 \ No newline at end of file +2.1.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/post-smtp.txt b/helpers/wordpress/plugins/post-smtp.txt index a6254504e40..e7034819f6f 100644 --- a/helpers/wordpress/plugins/post-smtp.txt +++ b/helpers/wordpress/plugins/post-smtp.txt @@ -1 +1 @@ -2.3.1 \ No newline at end of file +2.3.2 \ No newline at end of file diff --git a/helpers/wordpress/plugins/simple-page-ordering.txt b/helpers/wordpress/plugins/simple-page-ordering.txt index 6550da6970a..ab6d27898c1 100644 --- a/helpers/wordpress/plugins/simple-page-ordering.txt +++ b/helpers/wordpress/plugins/simple-page-ordering.txt @@ -1 +1 @@ -2.4.3 \ No newline at end of file +2.4.4 \ No newline at end of file diff --git a/helpers/wordpress/plugins/webp-converter-for-media.txt b/helpers/wordpress/plugins/webp-converter-for-media.txt index 475e1842948..25c1b355a16 100644 --- a/helpers/wordpress/plugins/webp-converter-for-media.txt +++ b/helpers/wordpress/plugins/webp-converter-for-media.txt @@ -1 +1 @@ -5.6.2 \ No newline at end of file +5.6.3 \ No newline at end of file diff --git a/helpers/wordpress/plugins/webp-express.txt b/helpers/wordpress/plugins/webp-express.txt new file mode 100644 index 00000000000..44c20126352 --- /dev/null +++ b/helpers/wordpress/plugins/webp-express.txt @@ -0,0 +1 @@ +N/A \ No newline at end of file diff --git a/helpers/wordpress/plugins/woocommerce.txt b/helpers/wordpress/plugins/woocommerce.txt index e1ce7b82a2c..7796a13c20e 100644 --- a/helpers/wordpress/plugins/woocommerce.txt +++ b/helpers/wordpress/plugins/woocommerce.txt @@ -1 +1 @@ -7.2.2 \ No newline at end of file +7.2.3 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wordpress-seo.txt b/helpers/wordpress/plugins/wordpress-seo.txt index a4bcb5031b3..f55310d3db6 100644 --- a/helpers/wordpress/plugins/wordpress-seo.txt +++ b/helpers/wordpress/plugins/wordpress-seo.txt @@ -1 +1 @@ -19.13 \ No newline at end of file +19.14 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wp-google-maps.txt b/helpers/wordpress/plugins/wp-google-maps.txt index 5623d118b3d..6b5b6627525 100644 --- a/helpers/wordpress/plugins/wp-google-maps.txt +++ b/helpers/wordpress/plugins/wp-google-maps.txt @@ -1 +1 @@ -9.0.14 \ No newline at end of file +9.0.15 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wp-reset.txt b/helpers/wordpress/plugins/wp-reset.txt index c3be2287dc7..89130f46747 100644 --- a/helpers/wordpress/plugins/wp-reset.txt +++ b/helpers/wordpress/plugins/wp-reset.txt @@ -1 +1 @@ -1.96 \ No newline at end of file +1.97 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wp-statistics.txt b/helpers/wordpress/plugins/wp-statistics.txt index ff59c07b835..f7645df6c8c 100644 --- a/helpers/wordpress/plugins/wp-statistics.txt +++ b/helpers/wordpress/plugins/wp-statistics.txt @@ -1 +1 @@ -13.2.13 \ No newline at end of file +13.2.14 \ No newline at end of file diff --git a/technologies/wordpress/plugins/webp-express.yaml b/technologies/wordpress/plugins/webp-express.yaml new file mode 100644 index 00000000000..be1033fc3cc --- /dev/null +++ b/technologies/wordpress/plugins/webp-express.yaml @@ -0,0 +1,49 @@ +id: wordpress-webp-express + +info: + name: WebP Express Detection + author: ricardomaia + severity: info + reference: + - https://wordpress.org/plugins/webp-express/ + metadata: + plugin_namespace: webp-express + wpscan: https://wpscan.com/plugin/webp-express + tags: tech,wordpress,wp-plugin,top-200 + +requests: + - method: GET + + path: + - "{{BaseURL}}/wp-content/plugins/webp-express/readme.txt" + + payloads: + last_version: helpers/wordpress/plugins/webp-express.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.]+)' From 6fbeee210575ed46822ba1bb4f58aa2aab92e820 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 12 Jan 2023 04:17:46 +0000 Subject: [PATCH 05/20] Auto WordPress Plugins Update [Thu Jan 12 04:17:46 UTC 2023] :robot: --- helpers/wordpress/plugins/leadin.txt | 2 +- helpers/wordpress/plugins/nextgen-gallery.txt | 2 +- helpers/wordpress/plugins/ocean-extra.txt | 2 +- helpers/wordpress/plugins/photo-gallery.txt | 2 +- helpers/wordpress/plugins/pixelyoursite.txt | 2 +- helpers/wordpress/plugins/really-simple-ssl.txt | 2 +- helpers/wordpress/plugins/seo-by-rank-math.txt | 2 +- helpers/wordpress/plugins/translatepress-multilingual.txt | 2 +- helpers/wordpress/plugins/w3-total-cache.txt | 2 +- helpers/wordpress/plugins/woocommerce-gateway-stripe.txt | 2 +- helpers/wordpress/plugins/woocommerce-payments.txt | 2 +- helpers/wordpress/plugins/wp-fastest-cache.txt | 2 +- helpers/wordpress/plugins/wp-google-maps.txt | 2 +- helpers/wordpress/plugins/wp-user-avatar.txt | 2 +- helpers/wordpress/plugins/wpforms-lite.txt | 2 +- 15 files changed, 15 insertions(+), 15 deletions(-) diff --git a/helpers/wordpress/plugins/leadin.txt b/helpers/wordpress/plugins/leadin.txt index 334cc2afe3b..36c41896d67 100644 --- a/helpers/wordpress/plugins/leadin.txt +++ b/helpers/wordpress/plugins/leadin.txt @@ -1 +1 @@ -9.2.81 \ No newline at end of file +10.0.10 \ No newline at end of file diff --git a/helpers/wordpress/plugins/nextgen-gallery.txt b/helpers/wordpress/plugins/nextgen-gallery.txt index 9ec58f66337..67f172f8efe 100644 --- a/helpers/wordpress/plugins/nextgen-gallery.txt +++ b/helpers/wordpress/plugins/nextgen-gallery.txt @@ -1 +1 @@ -3.30 \ No newline at end of file +3.32 \ No newline at end of file diff --git a/helpers/wordpress/plugins/ocean-extra.txt b/helpers/wordpress/plugins/ocean-extra.txt index 50aea0e7aba..7c32728738a 100644 --- a/helpers/wordpress/plugins/ocean-extra.txt +++ b/helpers/wordpress/plugins/ocean-extra.txt @@ -1 +1 @@ -2.1.0 \ No newline at end of file +2.1.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/photo-gallery.txt b/helpers/wordpress/plugins/photo-gallery.txt index 5af131d6505..709058798c6 100644 --- a/helpers/wordpress/plugins/photo-gallery.txt +++ b/helpers/wordpress/plugins/photo-gallery.txt @@ -1 +1 @@ -1.8.9 \ No newline at end of file +1.8.10 \ No newline at end of file diff --git a/helpers/wordpress/plugins/pixelyoursite.txt b/helpers/wordpress/plugins/pixelyoursite.txt index 4f22ce36093..4d0ffae7b59 100644 --- a/helpers/wordpress/plugins/pixelyoursite.txt +++ b/helpers/wordpress/plugins/pixelyoursite.txt @@ -1 +1 @@ -9.2.2 \ No newline at end of file +9.3.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/really-simple-ssl.txt b/helpers/wordpress/plugins/really-simple-ssl.txt index 17e1a55c78e..358e78e6074 100644 --- a/helpers/wordpress/plugins/really-simple-ssl.txt +++ b/helpers/wordpress/plugins/really-simple-ssl.txt @@ -1 +1 @@ -6.0.14 \ No newline at end of file +6.1.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/seo-by-rank-math.txt b/helpers/wordpress/plugins/seo-by-rank-math.txt index f7528e3ff9a..7dc1a911b47 100644 --- a/helpers/wordpress/plugins/seo-by-rank-math.txt +++ b/helpers/wordpress/plugins/seo-by-rank-math.txt @@ -1 +1 @@ -1.0.105 \ No newline at end of file +1.0.106 \ No newline at end of file diff --git a/helpers/wordpress/plugins/translatepress-multilingual.txt b/helpers/wordpress/plugins/translatepress-multilingual.txt index ab6d27898c1..26f8b8bcdf8 100644 --- a/helpers/wordpress/plugins/translatepress-multilingual.txt +++ b/helpers/wordpress/plugins/translatepress-multilingual.txt @@ -1 +1 @@ -2.4.4 \ No newline at end of file +2.4.5 \ No newline at end of file diff --git a/helpers/wordpress/plugins/w3-total-cache.txt b/helpers/wordpress/plugins/w3-total-cache.txt index 72d132f7456..565a0d44fd0 100644 --- a/helpers/wordpress/plugins/w3-total-cache.txt +++ b/helpers/wordpress/plugins/w3-total-cache.txt @@ -1 +1 @@ -2.2.9 \ No newline at end of file +2.2.10 \ No newline at end of file diff --git a/helpers/wordpress/plugins/woocommerce-gateway-stripe.txt b/helpers/wordpress/plugins/woocommerce-gateway-stripe.txt index 73a86b1970a..2f963cd6d1c 100644 --- a/helpers/wordpress/plugins/woocommerce-gateway-stripe.txt +++ b/helpers/wordpress/plugins/woocommerce-gateway-stripe.txt @@ -1 +1 @@ -7.0.1 \ No newline at end of file +7.0.2 \ No newline at end of file diff --git a/helpers/wordpress/plugins/woocommerce-payments.txt b/helpers/wordpress/plugins/woocommerce-payments.txt index 804440660c7..e230c8396d1 100644 --- a/helpers/wordpress/plugins/woocommerce-payments.txt +++ b/helpers/wordpress/plugins/woocommerce-payments.txt @@ -1 +1 @@ -5.2.1 \ No newline at end of file +5.3.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wp-fastest-cache.txt b/helpers/wordpress/plugins/wp-fastest-cache.txt index e5a4a5e7d84..1cc5f657e05 100644 --- a/helpers/wordpress/plugins/wp-fastest-cache.txt +++ b/helpers/wordpress/plugins/wp-fastest-cache.txt @@ -1 +1 @@ -1.0.9 \ No newline at end of file +1.1.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wp-google-maps.txt b/helpers/wordpress/plugins/wp-google-maps.txt index 6b5b6627525..5eeb3f978cd 100644 --- a/helpers/wordpress/plugins/wp-google-maps.txt +++ b/helpers/wordpress/plugins/wp-google-maps.txt @@ -1 +1 @@ -9.0.15 \ No newline at end of file +9.0.17 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wp-user-avatar.txt b/helpers/wordpress/plugins/wp-user-avatar.txt index ae6e65bd968..d01c9f6604b 100644 --- a/helpers/wordpress/plugins/wp-user-avatar.txt +++ b/helpers/wordpress/plugins/wp-user-avatar.txt @@ -1 +1 @@ -4.5.3 \ No newline at end of file +4.5.4 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wpforms-lite.txt b/helpers/wordpress/plugins/wpforms-lite.txt index cb1ad9b47f0..691cb900f30 100644 --- a/helpers/wordpress/plugins/wpforms-lite.txt +++ b/helpers/wordpress/plugins/wpforms-lite.txt @@ -1 +1 @@ -1.7.9 \ No newline at end of file +1.7.9.1 \ No newline at end of file From 0276e4efb8e65b6bec48a066d8c3b03fc8b3d627 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 13 Jan 2023 04:18:15 +0000 Subject: [PATCH 06/20] Auto WordPress Plugins Update [Fri Jan 13 04:18:15 UTC 2023] :robot: --- helpers/wordpress/plugins/all-in-one-seo-pack.txt | 2 +- helpers/wordpress/plugins/disable-comments.txt | 2 +- helpers/wordpress/plugins/formidable.txt | 2 +- helpers/wordpress/plugins/google-analytics-dashboard-for-wp.txt | 2 +- helpers/wordpress/plugins/google-analytics-for-wordpress.txt | 2 +- helpers/wordpress/plugins/ml-slider.txt | 2 +- helpers/wordpress/plugins/tablepress.txt | 2 +- helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt | 2 +- helpers/wordpress/plugins/w3-total-cache.txt | 2 +- helpers/wordpress/plugins/woocommerce.txt | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/helpers/wordpress/plugins/all-in-one-seo-pack.txt b/helpers/wordpress/plugins/all-in-one-seo-pack.txt index a22a2817994..88ea5ace533 100644 --- a/helpers/wordpress/plugins/all-in-one-seo-pack.txt +++ b/helpers/wordpress/plugins/all-in-one-seo-pack.txt @@ -1 +1 @@ -4.2.8 \ No newline at end of file +4.2.9 \ No newline at end of file diff --git a/helpers/wordpress/plugins/disable-comments.txt b/helpers/wordpress/plugins/disable-comments.txt index acdc3f1b0b2..6550da6970a 100644 --- a/helpers/wordpress/plugins/disable-comments.txt +++ b/helpers/wordpress/plugins/disable-comments.txt @@ -1 +1 @@ -2.4.2 \ No newline at end of file +2.4.3 \ No newline at end of file diff --git a/helpers/wordpress/plugins/formidable.txt b/helpers/wordpress/plugins/formidable.txt index 393072c7a6e..29fe95d7a39 100644 --- a/helpers/wordpress/plugins/formidable.txt +++ b/helpers/wordpress/plugins/formidable.txt @@ -1 +1 @@ -5.5.5 \ No newline at end of file +5.5.6 \ No newline at end of file diff --git a/helpers/wordpress/plugins/google-analytics-dashboard-for-wp.txt b/helpers/wordpress/plugins/google-analytics-dashboard-for-wp.txt index 573e3c6c160..2555164e234 100644 --- a/helpers/wordpress/plugins/google-analytics-dashboard-for-wp.txt +++ b/helpers/wordpress/plugins/google-analytics-dashboard-for-wp.txt @@ -1 +1 @@ -7.11.0 \ No newline at end of file +7.12.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/google-analytics-for-wordpress.txt b/helpers/wordpress/plugins/google-analytics-for-wordpress.txt index 62f6898c186..4e28b086249 100644 --- a/helpers/wordpress/plugins/google-analytics-for-wordpress.txt +++ b/helpers/wordpress/plugins/google-analytics-for-wordpress.txt @@ -1 +1 @@ -8.11.0 \ No newline at end of file +8.12.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/ml-slider.txt b/helpers/wordpress/plugins/ml-slider.txt index 6d99b7aae69..ff54b8a8d7d 100644 --- a/helpers/wordpress/plugins/ml-slider.txt +++ b/helpers/wordpress/plugins/ml-slider.txt @@ -1 +1 @@ -3.28.2 \ No newline at end of file +3.28.3 \ No newline at end of file diff --git a/helpers/wordpress/plugins/tablepress.txt b/helpers/wordpress/plugins/tablepress.txt index f93ea0ca333..6acdb442890 100644 --- a/helpers/wordpress/plugins/tablepress.txt +++ b/helpers/wordpress/plugins/tablepress.txt @@ -1 +1 @@ -2.0.2 \ No newline at end of file +2.0.3 \ No newline at end of file diff --git a/helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt b/helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt index e3a4f193364..cc6612c36e0 100644 --- a/helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt +++ b/helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt @@ -1 +1 @@ -2.2.0 \ No newline at end of file +2.3.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/w3-total-cache.txt b/helpers/wordpress/plugins/w3-total-cache.txt index 565a0d44fd0..4c221290922 100644 --- a/helpers/wordpress/plugins/w3-total-cache.txt +++ b/helpers/wordpress/plugins/w3-total-cache.txt @@ -1 +1 @@ -2.2.10 \ No newline at end of file +2.2.11 \ No newline at end of file diff --git a/helpers/wordpress/plugins/woocommerce.txt b/helpers/wordpress/plugins/woocommerce.txt index 7796a13c20e..8b23b8d47ce 100644 --- a/helpers/wordpress/plugins/woocommerce.txt +++ b/helpers/wordpress/plugins/woocommerce.txt @@ -1 +1 @@ -7.2.3 \ No newline at end of file +7.3.0 \ No newline at end of file From cf89c1db103edae93b6c44e54ea4805929809ed2 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sat, 14 Jan 2023 04:17:08 +0000 Subject: [PATCH 07/20] Auto WordPress Plugins Update [Sat Jan 14 04:17:08 UTC 2023] :robot: --- helpers/wordpress/plugins/enable-media-replace.txt | 2 +- helpers/wordpress/plugins/mailchimp-for-wp.txt | 2 +- helpers/wordpress/plugins/wp-statistics.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/helpers/wordpress/plugins/enable-media-replace.txt b/helpers/wordpress/plugins/enable-media-replace.txt index cc868b62c30..4bac418e4ac 100644 --- a/helpers/wordpress/plugins/enable-media-replace.txt +++ b/helpers/wordpress/plugins/enable-media-replace.txt @@ -1 +1 @@ -4.0.1 \ No newline at end of file +4.0.2 \ No newline at end of file diff --git a/helpers/wordpress/plugins/mailchimp-for-wp.txt b/helpers/wordpress/plugins/mailchimp-for-wp.txt index d276af03a03..b617d997d77 100644 --- a/helpers/wordpress/plugins/mailchimp-for-wp.txt +++ b/helpers/wordpress/plugins/mailchimp-for-wp.txt @@ -1 +1 @@ -4.8.12 \ No newline at end of file +4.9.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wp-statistics.txt b/helpers/wordpress/plugins/wp-statistics.txt index f7645df6c8c..c05bdc7d963 100644 --- a/helpers/wordpress/plugins/wp-statistics.txt +++ b/helpers/wordpress/plugins/wp-statistics.txt @@ -1 +1 @@ -13.2.14 \ No newline at end of file +13.2.15 \ No newline at end of file From cce6bc137785ad7c916a78e8a618e22bfebfef7a Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sun, 15 Jan 2023 04:17:21 +0000 Subject: [PATCH 08/20] Auto WordPress Plugins Update [Sun Jan 15 04:17:21 UTC 2023] :robot: --- helpers/wordpress/plugins/so-widgets-bundle.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers/wordpress/plugins/so-widgets-bundle.txt b/helpers/wordpress/plugins/so-widgets-bundle.txt index 9592b2f94b2..be9e937a697 100644 --- a/helpers/wordpress/plugins/so-widgets-bundle.txt +++ b/helpers/wordpress/plugins/so-widgets-bundle.txt @@ -1 +1 @@ -1.46.1 \ No newline at end of file +1.46.2 \ No newline at end of file From 37505be93a1242124d36d14306aaecb94d59a175 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 16 Jan 2023 04:18:25 +0000 Subject: [PATCH 09/20] Auto WordPress Plugins Update [Mon Jan 16 04:18:25 UTC 2023] :robot: --- helpers/wordpress/plugins/otter-blocks.txt | 1 + .../plugins/under-construction-page.txt | 2 +- .../wordpress/plugins/otter-blocks.yaml | 49 +++++++++++++++++++ 3 files changed, 51 insertions(+), 1 deletion(-) create mode 100644 helpers/wordpress/plugins/otter-blocks.txt create mode 100644 technologies/wordpress/plugins/otter-blocks.yaml diff --git a/helpers/wordpress/plugins/otter-blocks.txt b/helpers/wordpress/plugins/otter-blocks.txt new file mode 100644 index 00000000000..f577dfda013 --- /dev/null +++ b/helpers/wordpress/plugins/otter-blocks.txt @@ -0,0 +1 @@ +trunk \ No newline at end of file diff --git a/helpers/wordpress/plugins/under-construction-page.txt b/helpers/wordpress/plugins/under-construction-page.txt index 66ad8b6f981..844c7e03d7e 100644 --- a/helpers/wordpress/plugins/under-construction-page.txt +++ b/helpers/wordpress/plugins/under-construction-page.txt @@ -1 +1 @@ -3.95 \ No newline at end of file +3.96 \ No newline at end of file diff --git a/technologies/wordpress/plugins/otter-blocks.yaml b/technologies/wordpress/plugins/otter-blocks.yaml new file mode 100644 index 00000000000..b05164fcf14 --- /dev/null +++ b/technologies/wordpress/plugins/otter-blocks.yaml @@ -0,0 +1,49 @@ +id: wordpress-otter-blocks + +info: + name: Otter – Gutenberg Blocks – Page Builder for Gutenberg Editor & FSE Detection + author: ricardomaia + severity: info + reference: + - https://wordpress.org/plugins/otter-blocks/ + metadata: + plugin_namespace: otter-blocks + wpscan: https://wpscan.com/plugin/otter-blocks + tags: tech,wordpress,wp-plugin,top-200 + +requests: + - method: GET + + path: + - "{{BaseURL}}/wp-content/plugins/otter-blocks/readme.txt" + + payloads: + last_version: helpers/wordpress/plugins/otter-blocks.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.]+)' From 379f08dc5cb7cf6aed06fe5eaa47507091e37b3e Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 17 Jan 2023 04:18:06 +0000 Subject: [PATCH 10/20] Auto WordPress Plugins Update [Tue Jan 17 04:18:06 UTC 2023] :robot: --- helpers/wordpress/plugins/cookie-notice.txt | 2 +- helpers/wordpress/plugins/google-site-kit.txt | 2 +- helpers/wordpress/plugins/jetpack.txt | 2 +- helpers/wordpress/plugins/limit-login-attempts-reloaded.txt | 2 +- helpers/wordpress/plugins/siteorigin-panels.txt | 2 +- .../plugins/woocommerce-pdf-invoices-packing-slips.txt | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/helpers/wordpress/plugins/cookie-notice.txt b/helpers/wordpress/plugins/cookie-notice.txt index ab6d27898c1..26f8b8bcdf8 100644 --- a/helpers/wordpress/plugins/cookie-notice.txt +++ b/helpers/wordpress/plugins/cookie-notice.txt @@ -1 +1 @@ -2.4.4 \ No newline at end of file +2.4.5 \ No newline at end of file diff --git a/helpers/wordpress/plugins/google-site-kit.txt b/helpers/wordpress/plugins/google-site-kit.txt index e85d6891825..15b5f6b6718 100644 --- a/helpers/wordpress/plugins/google-site-kit.txt +++ b/helpers/wordpress/plugins/google-site-kit.txt @@ -1 +1 @@ -1.90.1 \ No newline at end of file +1.92.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/jetpack.txt b/helpers/wordpress/plugins/jetpack.txt index ae27ab17bed..393b190a166 100644 --- a/helpers/wordpress/plugins/jetpack.txt +++ b/helpers/wordpress/plugins/jetpack.txt @@ -1 +1 @@ -11.7 \ No newline at end of file +11.7.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/limit-login-attempts-reloaded.txt b/helpers/wordpress/plugins/limit-login-attempts-reloaded.txt index fde7ac6392d..32d90651069 100644 --- a/helpers/wordpress/plugins/limit-login-attempts-reloaded.txt +++ b/helpers/wordpress/plugins/limit-login-attempts-reloaded.txt @@ -1 +1 @@ -2.25.10 \ No newline at end of file +2.25.11 \ No newline at end of file diff --git a/helpers/wordpress/plugins/siteorigin-panels.txt b/helpers/wordpress/plugins/siteorigin-panels.txt index 29e5a3bd477..b341aa021e7 100644 --- a/helpers/wordpress/plugins/siteorigin-panels.txt +++ b/helpers/wordpress/plugins/siteorigin-panels.txt @@ -1 +1 @@ -2.20.3 \ No newline at end of file +2.20.4 \ No newline at end of file diff --git a/helpers/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.txt b/helpers/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.txt index c4a602db6ef..0fa4ae48903 100644 --- a/helpers/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.txt +++ b/helpers/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.txt @@ -1 +1 @@ -3.2.6 \ No newline at end of file +3.3.0 \ No newline at end of file From 9fd7094881a9ab6c2442feb431cef290a2e9698c Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 18 Jan 2023 04:18:41 +0000 Subject: [PATCH 11/20] Auto WordPress Plugins Update [Wed Jan 18 04:18:41 UTC 2023] :robot: --- helpers/wordpress/plugins/all-in-one-wp-migration.txt | 2 +- helpers/wordpress/plugins/custom-css-js.txt | 2 +- helpers/wordpress/plugins/elementor.txt | 2 +- helpers/wordpress/plugins/elementskit-lite.txt | 2 +- helpers/wordpress/plugins/google-listings-and-ads.txt | 2 +- helpers/wordpress/plugins/leadin.txt | 2 +- helpers/wordpress/plugins/mailpoet.txt | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/helpers/wordpress/plugins/all-in-one-wp-migration.txt b/helpers/wordpress/plugins/all-in-one-wp-migration.txt index 2d02cbd2f23..d7ebe3be206 100644 --- a/helpers/wordpress/plugins/all-in-one-wp-migration.txt +++ b/helpers/wordpress/plugins/all-in-one-wp-migration.txt @@ -1 +1 @@ -7.69 \ No newline at end of file +7.70 \ No newline at end of file diff --git a/helpers/wordpress/plugins/custom-css-js.txt b/helpers/wordpress/plugins/custom-css-js.txt index f2fe4786878..e81329a8268 100644 --- a/helpers/wordpress/plugins/custom-css-js.txt +++ b/helpers/wordpress/plugins/custom-css-js.txt @@ -1 +1 @@ -3.41 \ No newline at end of file +3.42 \ No newline at end of file diff --git a/helpers/wordpress/plugins/elementor.txt b/helpers/wordpress/plugins/elementor.txt index e06d07afe14..a8819280cfa 100644 --- a/helpers/wordpress/plugins/elementor.txt +++ b/helpers/wordpress/plugins/elementor.txt @@ -1 +1 @@ -3.10.0 \ No newline at end of file +3.10.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/elementskit-lite.txt b/helpers/wordpress/plugins/elementskit-lite.txt index 6533b66871f..96d771776bd 100644 --- a/helpers/wordpress/plugins/elementskit-lite.txt +++ b/helpers/wordpress/plugins/elementskit-lite.txt @@ -1 +1 @@ -2.8.0 \ No newline at end of file +2.8.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/google-listings-and-ads.txt b/helpers/wordpress/plugins/google-listings-and-ads.txt index 0501b79e988..51bd85577a1 100644 --- a/helpers/wordpress/plugins/google-listings-and-ads.txt +++ b/helpers/wordpress/plugins/google-listings-and-ads.txt @@ -1 +1 @@ -2.3.6 \ No newline at end of file +2.3.7 \ No newline at end of file diff --git a/helpers/wordpress/plugins/leadin.txt b/helpers/wordpress/plugins/leadin.txt index 36c41896d67..20fc9e64009 100644 --- a/helpers/wordpress/plugins/leadin.txt +++ b/helpers/wordpress/plugins/leadin.txt @@ -1 +1 @@ -10.0.10 \ No newline at end of file +10.0.16 \ No newline at end of file diff --git a/helpers/wordpress/plugins/mailpoet.txt b/helpers/wordpress/plugins/mailpoet.txt index 64b5ae3938a..ae153944ee8 100644 --- a/helpers/wordpress/plugins/mailpoet.txt +++ b/helpers/wordpress/plugins/mailpoet.txt @@ -1 +1 @@ -4.4.0 \ No newline at end of file +4.5.0 \ No newline at end of file From cfe1ce27973e2ff0b4734298f2addf5b5772bcbe Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 19 Jan 2023 04:19:00 +0000 Subject: [PATCH 12/20] Auto WordPress Plugins Update [Thu Jan 19 04:19:00 UTC 2023] :robot: --- helpers/wordpress/plugins/advanced-custom-fields.txt | 2 +- helpers/wordpress/plugins/complianz-gdpr.txt | 2 +- helpers/wordpress/plugins/gutenberg.txt | 2 +- helpers/wordpress/plugins/nextgen-gallery.txt | 2 +- helpers/wordpress/plugins/ninja-forms.txt | 2 +- helpers/wordpress/plugins/optinmonster.txt | 2 +- helpers/wordpress/plugins/the-events-calendar.txt | 2 +- helpers/wordpress/plugins/w3-total-cache.txt | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/helpers/wordpress/plugins/advanced-custom-fields.txt b/helpers/wordpress/plugins/advanced-custom-fields.txt index e8738082618..41bd15e2ea9 100644 --- a/helpers/wordpress/plugins/advanced-custom-fields.txt +++ b/helpers/wordpress/plugins/advanced-custom-fields.txt @@ -1 +1 @@ -6.0.6 \ No newline at end of file +6.0.7 \ No newline at end of file diff --git a/helpers/wordpress/plugins/complianz-gdpr.txt b/helpers/wordpress/plugins/complianz-gdpr.txt index 4d1119ec4b0..c0be8a7992a 100644 --- a/helpers/wordpress/plugins/complianz-gdpr.txt +++ b/helpers/wordpress/plugins/complianz-gdpr.txt @@ -1 +1 @@ -6.3.9 \ No newline at end of file +6.4.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/gutenberg.txt b/helpers/wordpress/plugins/gutenberg.txt index 385495e93e4..791fc94d82f 100644 --- a/helpers/wordpress/plugins/gutenberg.txt +++ b/helpers/wordpress/plugins/gutenberg.txt @@ -1 +1 @@ -14.9.1 \ No newline at end of file +15.0.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/nextgen-gallery.txt b/helpers/wordpress/plugins/nextgen-gallery.txt index 67f172f8efe..805df82f0d1 100644 --- a/helpers/wordpress/plugins/nextgen-gallery.txt +++ b/helpers/wordpress/plugins/nextgen-gallery.txt @@ -1 +1 @@ -3.32 \ No newline at end of file +3.33 \ No newline at end of file diff --git a/helpers/wordpress/plugins/ninja-forms.txt b/helpers/wordpress/plugins/ninja-forms.txt index 86f7d611d6f..5058483853f 100644 --- a/helpers/wordpress/plugins/ninja-forms.txt +++ b/helpers/wordpress/plugins/ninja-forms.txt @@ -1 +1 @@ -3.6.15 \ No newline at end of file +3.6.16 \ No newline at end of file diff --git a/helpers/wordpress/plugins/optinmonster.txt b/helpers/wordpress/plugins/optinmonster.txt index c200bec4aff..c51908eafb7 100644 --- a/helpers/wordpress/plugins/optinmonster.txt +++ b/helpers/wordpress/plugins/optinmonster.txt @@ -1 +1 @@ -2.11.1 \ No newline at end of file +2.11.2 \ No newline at end of file diff --git a/helpers/wordpress/plugins/the-events-calendar.txt b/helpers/wordpress/plugins/the-events-calendar.txt index 3034eb6b752..41bd15e2ea9 100644 --- a/helpers/wordpress/plugins/the-events-calendar.txt +++ b/helpers/wordpress/plugins/the-events-calendar.txt @@ -1 +1 @@ -6.0.6.2 \ No newline at end of file +6.0.7 \ No newline at end of file diff --git a/helpers/wordpress/plugins/w3-total-cache.txt b/helpers/wordpress/plugins/w3-total-cache.txt index 4c221290922..c45a01dab79 100644 --- a/helpers/wordpress/plugins/w3-total-cache.txt +++ b/helpers/wordpress/plugins/w3-total-cache.txt @@ -1 +1 @@ -2.2.11 \ No newline at end of file +2.2.12 \ No newline at end of file From be34fb5614c5092778456c493db68c13c56306bb Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 20 Jan 2023 04:18:21 +0000 Subject: [PATCH 13/20] Auto WordPress Plugins Update [Fri Jan 20 04:18:21 UTC 2023] :robot: --- helpers/wordpress/plugins/astra-sites.txt | 2 +- helpers/wordpress/plugins/autoptimize.txt | 2 +- helpers/wordpress/plugins/pixelyoursite.txt | 2 +- helpers/wordpress/plugins/redux-framework.txt | 2 +- helpers/wordpress/plugins/tablepress.txt | 2 +- helpers/wordpress/plugins/the-events-calendar.txt | 2 +- helpers/wordpress/plugins/woocommerce-services.txt | 2 +- helpers/wordpress/plugins/wp-migrate-db.txt | 2 +- technologies/wordpress/plugins/elementskit-lite.yaml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/helpers/wordpress/plugins/astra-sites.txt b/helpers/wordpress/plugins/astra-sites.txt index c7451470369..fac63b02785 100644 --- a/helpers/wordpress/plugins/astra-sites.txt +++ b/helpers/wordpress/plugins/astra-sites.txt @@ -1 +1 @@ -3.1.22 \ No newline at end of file +3.1.23 \ No newline at end of file diff --git a/helpers/wordpress/plugins/autoptimize.txt b/helpers/wordpress/plugins/autoptimize.txt index b532f3dc334..97ceee1b9fc 100644 --- a/helpers/wordpress/plugins/autoptimize.txt +++ b/helpers/wordpress/plugins/autoptimize.txt @@ -1 +1 @@ -3.1.4 \ No newline at end of file +3.1.5 \ No newline at end of file diff --git a/helpers/wordpress/plugins/pixelyoursite.txt b/helpers/wordpress/plugins/pixelyoursite.txt index 4d0ffae7b59..4fb2e5db32c 100644 --- a/helpers/wordpress/plugins/pixelyoursite.txt +++ b/helpers/wordpress/plugins/pixelyoursite.txt @@ -1 +1 @@ -9.3.0 \ No newline at end of file +9.3.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/redux-framework.txt b/helpers/wordpress/plugins/redux-framework.txt index 007c71d612d..99ed85a423a 100644 --- a/helpers/wordpress/plugins/redux-framework.txt +++ b/helpers/wordpress/plugins/redux-framework.txt @@ -1 +1 @@ -4.3.21 \ No newline at end of file +4.3.22 \ No newline at end of file diff --git a/helpers/wordpress/plugins/tablepress.txt b/helpers/wordpress/plugins/tablepress.txt index 6acdb442890..26e33797acf 100644 --- a/helpers/wordpress/plugins/tablepress.txt +++ b/helpers/wordpress/plugins/tablepress.txt @@ -1 +1 @@ -2.0.3 \ No newline at end of file +2.0.4 \ No newline at end of file diff --git a/helpers/wordpress/plugins/the-events-calendar.txt b/helpers/wordpress/plugins/the-events-calendar.txt index 41bd15e2ea9..a4f1569d8ea 100644 --- a/helpers/wordpress/plugins/the-events-calendar.txt +++ b/helpers/wordpress/plugins/the-events-calendar.txt @@ -1 +1 @@ -6.0.7 \ No newline at end of file +6.0.7.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/woocommerce-services.txt b/helpers/wordpress/plugins/woocommerce-services.txt index 7c32728738a..e3a4f193364 100644 --- a/helpers/wordpress/plugins/woocommerce-services.txt +++ b/helpers/wordpress/plugins/woocommerce-services.txt @@ -1 +1 @@ -2.1.1 \ No newline at end of file +2.2.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wp-migrate-db.txt b/helpers/wordpress/plugins/wp-migrate-db.txt index fad066f801a..914ec967116 100644 --- a/helpers/wordpress/plugins/wp-migrate-db.txt +++ b/helpers/wordpress/plugins/wp-migrate-db.txt @@ -1 +1 @@ -2.5.0 \ No newline at end of file +2.6.0 \ No newline at end of file diff --git a/technologies/wordpress/plugins/elementskit-lite.yaml b/technologies/wordpress/plugins/elementskit-lite.yaml index 089ed23cb35..29dd80c1620 100644 --- a/technologies/wordpress/plugins/elementskit-lite.yaml +++ b/technologies/wordpress/plugins/elementskit-lite.yaml @@ -1,7 +1,7 @@ id: wordpress-elementskit-lite info: - name: ElementsKit Elementor addons Detection + name: ElementsKit Elementor Addons and Templates Library Detection author: ricardomaia severity: info reference: From 66c8b8daa044588609564b24c5489b94cf7af87f Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sat, 21 Jan 2023 04:17:04 +0000 Subject: [PATCH 14/20] Auto WordPress Plugins Update [Sat Jan 21 04:17:04 UTC 2023] :robot: --- helpers/wordpress/plugins/redux-framework.txt | 2 +- helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt | 2 +- helpers/wordpress/plugins/webp-converter-for-media.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/helpers/wordpress/plugins/redux-framework.txt b/helpers/wordpress/plugins/redux-framework.txt index 99ed85a423a..a6b172f58f5 100644 --- a/helpers/wordpress/plugins/redux-framework.txt +++ b/helpers/wordpress/plugins/redux-framework.txt @@ -1 +1 @@ -4.3.22 \ No newline at end of file +4.3.24 \ No newline at end of file diff --git a/helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt b/helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt index cc6612c36e0..a6254504e40 100644 --- a/helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt +++ b/helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt @@ -1 +1 @@ -2.3.0 \ No newline at end of file +2.3.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/webp-converter-for-media.txt b/helpers/wordpress/plugins/webp-converter-for-media.txt index 25c1b355a16..2a06a418a77 100644 --- a/helpers/wordpress/plugins/webp-converter-for-media.txt +++ b/helpers/wordpress/plugins/webp-converter-for-media.txt @@ -1 +1 @@ -5.6.3 \ No newline at end of file +5.6.4 \ No newline at end of file From 5e077a606a7649023e0008eb746f48be4f1e62e5 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sun, 22 Jan 2023 04:17:43 +0000 Subject: [PATCH 15/20] Auto WordPress Plugins Update [Sun Jan 22 04:17:43 UTC 2023] :robot: --- helpers/wordpress/plugins/redirection.txt | 2 +- helpers/wordpress/plugins/wp-user-avatar.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/helpers/wordpress/plugins/redirection.txt b/helpers/wordpress/plugins/redirection.txt index 0722778658b..2e0c25f79a6 100644 --- a/helpers/wordpress/plugins/redirection.txt +++ b/helpers/wordpress/plugins/redirection.txt @@ -1 +1 @@ -5.3.6 \ No newline at end of file +5.3.7 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wp-user-avatar.txt b/helpers/wordpress/plugins/wp-user-avatar.txt index d01c9f6604b..50021202769 100644 --- a/helpers/wordpress/plugins/wp-user-avatar.txt +++ b/helpers/wordpress/plugins/wp-user-avatar.txt @@ -1 +1 @@ -4.5.4 \ No newline at end of file +4.5.5 \ No newline at end of file From 4d65131ddadd8dd4c919542c913547e1732695b0 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 23 Jan 2023 04:17:45 +0000 Subject: [PATCH 16/20] Auto WordPress Plugins Update [Mon Jan 23 04:17:45 UTC 2023] :robot: --- helpers/wordpress/plugins/redirection.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers/wordpress/plugins/redirection.txt b/helpers/wordpress/plugins/redirection.txt index 2e0c25f79a6..d758bc62f66 100644 --- a/helpers/wordpress/plugins/redirection.txt +++ b/helpers/wordpress/plugins/redirection.txt @@ -1 +1 @@ -5.3.7 \ No newline at end of file +5.3.8 \ No newline at end of file From 8699d9c2461d2906daba84761dc3632a09376f91 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 24 Jan 2023 04:18:04 +0000 Subject: [PATCH 17/20] Auto WordPress Plugins Update [Tue Jan 24 04:18:04 UTC 2023] :robot: --- helpers/wordpress/plugins/click-to-chat-for-whatsapp.txt | 2 +- helpers/wordpress/plugins/cookie-notice.txt | 2 +- helpers/wordpress/plugins/gutenberg.txt | 2 +- helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt | 2 +- .../plugins/woocommerce-pdf-invoices-packing-slips.txt | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/helpers/wordpress/plugins/click-to-chat-for-whatsapp.txt b/helpers/wordpress/plugins/click-to-chat-for-whatsapp.txt index 318956c3d51..8b6d1773a2a 100644 --- a/helpers/wordpress/plugins/click-to-chat-for-whatsapp.txt +++ b/helpers/wordpress/plugins/click-to-chat-for-whatsapp.txt @@ -1 +1 @@ -3.19 \ No newline at end of file +3.20 \ No newline at end of file diff --git a/helpers/wordpress/plugins/cookie-notice.txt b/helpers/wordpress/plugins/cookie-notice.txt index 26f8b8bcdf8..62e64205bf3 100644 --- a/helpers/wordpress/plugins/cookie-notice.txt +++ b/helpers/wordpress/plugins/cookie-notice.txt @@ -1 +1 @@ -2.4.5 \ No newline at end of file +2.4.6 \ No newline at end of file diff --git a/helpers/wordpress/plugins/gutenberg.txt b/helpers/wordpress/plugins/gutenberg.txt index 791fc94d82f..9dc738e691e 100644 --- a/helpers/wordpress/plugins/gutenberg.txt +++ b/helpers/wordpress/plugins/gutenberg.txt @@ -1 +1 @@ -15.0.0 \ No newline at end of file +15.0.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt b/helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt index a6254504e40..e7034819f6f 100644 --- a/helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt +++ b/helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt @@ -1 +1 @@ -2.3.1 \ No newline at end of file +2.3.2 \ No newline at end of file diff --git a/helpers/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.txt b/helpers/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.txt index 0fa4ae48903..712bd5a680e 100644 --- a/helpers/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.txt +++ b/helpers/wordpress/plugins/woocommerce-pdf-invoices-packing-slips.txt @@ -1 +1 @@ -3.3.0 \ No newline at end of file +3.3.1 \ No newline at end of file From d33f5dc041bfb6cccae38df6d5078cfdc7893d3d Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 25 Jan 2023 04:17:51 +0000 Subject: [PATCH 18/20] Auto WordPress Plugins Update [Wed Jan 25 04:17:51 UTC 2023] :robot: --- helpers/wordpress/plugins/google-listings-and-ads.txt | 2 +- helpers/wordpress/plugins/leadin.txt | 2 +- helpers/wordpress/plugins/mailpoet.txt | 2 +- helpers/wordpress/plugins/photo-gallery.txt | 2 +- helpers/wordpress/plugins/premium-addons-for-elementor.txt | 2 +- helpers/wordpress/plugins/really-simple-ssl.txt | 2 +- helpers/wordpress/plugins/so-widgets-bundle.txt | 2 +- helpers/wordpress/plugins/translatepress-multilingual.txt | 2 +- helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt | 2 +- helpers/wordpress/plugins/woocommerce-services.txt | 2 +- helpers/wordpress/plugins/woocommerce.txt | 2 +- helpers/wordpress/plugins/wordpress-seo.txt | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/helpers/wordpress/plugins/google-listings-and-ads.txt b/helpers/wordpress/plugins/google-listings-and-ads.txt index 51bd85577a1..3f5e730fc3e 100644 --- a/helpers/wordpress/plugins/google-listings-and-ads.txt +++ b/helpers/wordpress/plugins/google-listings-and-ads.txt @@ -1 +1 @@ -2.3.7 \ No newline at end of file +2.3.8 \ No newline at end of file diff --git a/helpers/wordpress/plugins/leadin.txt b/helpers/wordpress/plugins/leadin.txt index 20fc9e64009..18e0d2732e6 100644 --- a/helpers/wordpress/plugins/leadin.txt +++ b/helpers/wordpress/plugins/leadin.txt @@ -1 +1 @@ -10.0.16 \ No newline at end of file +10.0.19 \ No newline at end of file diff --git a/helpers/wordpress/plugins/mailpoet.txt b/helpers/wordpress/plugins/mailpoet.txt index ae153944ee8..99523d4768a 100644 --- a/helpers/wordpress/plugins/mailpoet.txt +++ b/helpers/wordpress/plugins/mailpoet.txt @@ -1 +1 @@ -4.5.0 \ No newline at end of file +4.5.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/photo-gallery.txt b/helpers/wordpress/plugins/photo-gallery.txt index 709058798c6..25ce11324db 100644 --- a/helpers/wordpress/plugins/photo-gallery.txt +++ b/helpers/wordpress/plugins/photo-gallery.txt @@ -1 +1 @@ -1.8.10 \ No newline at end of file +1.8.11 \ No newline at end of file diff --git a/helpers/wordpress/plugins/premium-addons-for-elementor.txt b/helpers/wordpress/plugins/premium-addons-for-elementor.txt index 403b34f56da..e9f465f4664 100644 --- a/helpers/wordpress/plugins/premium-addons-for-elementor.txt +++ b/helpers/wordpress/plugins/premium-addons-for-elementor.txt @@ -1 +1 @@ -4.9.46 \ No newline at end of file +4.9.47 \ No newline at end of file diff --git a/helpers/wordpress/plugins/really-simple-ssl.txt b/helpers/wordpress/plugins/really-simple-ssl.txt index 358e78e6074..132c6def58c 100644 --- a/helpers/wordpress/plugins/really-simple-ssl.txt +++ b/helpers/wordpress/plugins/really-simple-ssl.txt @@ -1 +1 @@ -6.1.0 \ No newline at end of file +6.1.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/so-widgets-bundle.txt b/helpers/wordpress/plugins/so-widgets-bundle.txt index be9e937a697..de38ac49b25 100644 --- a/helpers/wordpress/plugins/so-widgets-bundle.txt +++ b/helpers/wordpress/plugins/so-widgets-bundle.txt @@ -1 +1 @@ -1.46.2 \ No newline at end of file +1.46.3 \ No newline at end of file diff --git a/helpers/wordpress/plugins/translatepress-multilingual.txt b/helpers/wordpress/plugins/translatepress-multilingual.txt index 26f8b8bcdf8..62e64205bf3 100644 --- a/helpers/wordpress/plugins/translatepress-multilingual.txt +++ b/helpers/wordpress/plugins/translatepress-multilingual.txt @@ -1 +1 @@ -2.4.5 \ No newline at end of file +2.4.6 \ No newline at end of file diff --git a/helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt b/helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt index e7034819f6f..45674f16a8c 100644 --- a/helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt +++ b/helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt @@ -1 +1 @@ -2.3.2 \ No newline at end of file +2.3.3 \ No newline at end of file diff --git a/helpers/wordpress/plugins/woocommerce-services.txt b/helpers/wordpress/plugins/woocommerce-services.txt index e3a4f193364..fae692e41d4 100644 --- a/helpers/wordpress/plugins/woocommerce-services.txt +++ b/helpers/wordpress/plugins/woocommerce-services.txt @@ -1 +1 @@ -2.2.0 \ No newline at end of file +2.2.1 \ No newline at end of file diff --git a/helpers/wordpress/plugins/woocommerce.txt b/helpers/wordpress/plugins/woocommerce.txt index 8b23b8d47ce..7796a13c20e 100644 --- a/helpers/wordpress/plugins/woocommerce.txt +++ b/helpers/wordpress/plugins/woocommerce.txt @@ -1 +1 @@ -7.3.0 \ No newline at end of file +7.2.3 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wordpress-seo.txt b/helpers/wordpress/plugins/wordpress-seo.txt index f55310d3db6..03a73ef604b 100644 --- a/helpers/wordpress/plugins/wordpress-seo.txt +++ b/helpers/wordpress/plugins/wordpress-seo.txt @@ -1 +1 @@ -19.14 \ No newline at end of file +20.0 \ No newline at end of file From 6bf16d571aed3bbb2798b4cafc4dd7c4c3fbaca7 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 26 Jan 2023 04:18:12 +0000 Subject: [PATCH 19/20] Auto WordPress Plugins Update [Thu Jan 26 04:18:12 UTC 2023] :robot: --- helpers/wordpress/plugins/creative-mail-by-constant-contact.txt | 2 +- .../wordpress/plugins/essential-addons-for-elementor-lite.txt | 2 +- helpers/wordpress/plugins/mailpoet.txt | 2 +- helpers/wordpress/plugins/pixelyoursite.txt | 2 +- helpers/wordpress/plugins/seo-by-rank-math.txt | 2 +- helpers/wordpress/plugins/shortcodes-ultimate.txt | 2 +- helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt | 2 +- helpers/wordpress/plugins/woocommerce.txt | 2 +- helpers/wordpress/plugins/wps-hide-login.txt | 2 +- technologies/wordpress/plugins/ml-slider.yaml | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/helpers/wordpress/plugins/creative-mail-by-constant-contact.txt b/helpers/wordpress/plugins/creative-mail-by-constant-contact.txt index 83d1a5ebd85..60fdb8d5d2c 100644 --- a/helpers/wordpress/plugins/creative-mail-by-constant-contact.txt +++ b/helpers/wordpress/plugins/creative-mail-by-constant-contact.txt @@ -1 +1 @@ -1.6.6 \ No newline at end of file +1.6.7 \ No newline at end of file diff --git a/helpers/wordpress/plugins/essential-addons-for-elementor-lite.txt b/helpers/wordpress/plugins/essential-addons-for-elementor-lite.txt index 9af9a6a81c7..d2ff458a012 100644 --- a/helpers/wordpress/plugins/essential-addons-for-elementor-lite.txt +++ b/helpers/wordpress/plugins/essential-addons-for-elementor-lite.txt @@ -1 +1 @@ -5.5.2 \ No newline at end of file +5.5.3 \ No newline at end of file diff --git a/helpers/wordpress/plugins/mailpoet.txt b/helpers/wordpress/plugins/mailpoet.txt index 99523d4768a..689f7fbd336 100644 --- a/helpers/wordpress/plugins/mailpoet.txt +++ b/helpers/wordpress/plugins/mailpoet.txt @@ -1 +1 @@ -4.5.1 \ No newline at end of file +4.5.2 \ No newline at end of file diff --git a/helpers/wordpress/plugins/pixelyoursite.txt b/helpers/wordpress/plugins/pixelyoursite.txt index 4fb2e5db32c..0d01372d43d 100644 --- a/helpers/wordpress/plugins/pixelyoursite.txt +++ b/helpers/wordpress/plugins/pixelyoursite.txt @@ -1 +1 @@ -9.3.1 \ No newline at end of file +9.3.2 \ No newline at end of file diff --git a/helpers/wordpress/plugins/seo-by-rank-math.txt b/helpers/wordpress/plugins/seo-by-rank-math.txt index 7dc1a911b47..8666837d978 100644 --- a/helpers/wordpress/plugins/seo-by-rank-math.txt +++ b/helpers/wordpress/plugins/seo-by-rank-math.txt @@ -1 +1 @@ -1.0.106 \ No newline at end of file +1.0.107.2 \ No newline at end of file diff --git a/helpers/wordpress/plugins/shortcodes-ultimate.txt b/helpers/wordpress/plugins/shortcodes-ultimate.txt index 4e19b2f7214..5afcf01100f 100644 --- a/helpers/wordpress/plugins/shortcodes-ultimate.txt +++ b/helpers/wordpress/plugins/shortcodes-ultimate.txt @@ -1 +1 @@ -5.12.5 \ No newline at end of file +5.12.6 \ No newline at end of file diff --git a/helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt b/helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt index 45674f16a8c..fd06a9268de 100644 --- a/helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt +++ b/helpers/wordpress/plugins/ultimate-addons-for-gutenberg.txt @@ -1 +1 @@ -2.3.3 \ No newline at end of file +2.3.4 \ No newline at end of file diff --git a/helpers/wordpress/plugins/woocommerce.txt b/helpers/wordpress/plugins/woocommerce.txt index 7796a13c20e..8b23b8d47ce 100644 --- a/helpers/wordpress/plugins/woocommerce.txt +++ b/helpers/wordpress/plugins/woocommerce.txt @@ -1 +1 @@ -7.2.3 \ No newline at end of file +7.3.0 \ No newline at end of file diff --git a/helpers/wordpress/plugins/wps-hide-login.txt b/helpers/wordpress/plugins/wps-hide-login.txt index b4cac6fa408..0b9006ea850 100644 --- a/helpers/wordpress/plugins/wps-hide-login.txt +++ b/helpers/wordpress/plugins/wps-hide-login.txt @@ -1 +1 @@ -1.9.6 \ No newline at end of file +1.9.7 \ No newline at end of file diff --git a/technologies/wordpress/plugins/ml-slider.yaml b/technologies/wordpress/plugins/ml-slider.yaml index bee3c6c4a89..b669c0a16ec 100644 --- a/technologies/wordpress/plugins/ml-slider.yaml +++ b/technologies/wordpress/plugins/ml-slider.yaml @@ -1,7 +1,7 @@ id: wordpress-ml-slider info: - name: Slider, Gallery, and Carousel by MetaSlider – Responsive WordPress Plugin Detection + name: Slider, Gallery, and Carousel by MetaSlider – Responsive WordPress Slideshows Detection author: ricardomaia severity: info reference: From 5b4bb21ec9ac40a6b54c58dde25c6cf6a5e47c02 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 27 Jan 2023 04:17:34 +0000 Subject: [PATCH 20/20] Auto WordPress Plugins Update [Fri Jan 27 04:17:34 UTC 2023] :robot: --- helpers/wordpress/plugins/astra-sites.txt | 2 +- helpers/wordpress/plugins/contact-form-7.txt | 2 +- helpers/wordpress/plugins/duplicator.txt | 2 +- helpers/wordpress/plugins/malcare-security.txt | 2 +- helpers/wordpress/plugins/redirection.txt | 2 +- helpers/wordpress/plugins/the-events-calendar.txt | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/helpers/wordpress/plugins/astra-sites.txt b/helpers/wordpress/plugins/astra-sites.txt index fac63b02785..a2c92bba8e9 100644 --- a/helpers/wordpress/plugins/astra-sites.txt +++ b/helpers/wordpress/plugins/astra-sites.txt @@ -1 +1 @@ -3.1.23 \ No newline at end of file +3.1.24 \ No newline at end of file diff --git a/helpers/wordpress/plugins/contact-form-7.txt b/helpers/wordpress/plugins/contact-form-7.txt index 722fb619cef..23900d674da 100644 --- a/helpers/wordpress/plugins/contact-form-7.txt +++ b/helpers/wordpress/plugins/contact-form-7.txt @@ -1 +1 @@ -5.7.2 \ No newline at end of file +5.7.3 \ No newline at end of file diff --git a/helpers/wordpress/plugins/duplicator.txt b/helpers/wordpress/plugins/duplicator.txt index 8e03717dca2..a73b4325444 100644 --- a/helpers/wordpress/plugins/duplicator.txt +++ b/helpers/wordpress/plugins/duplicator.txt @@ -1 +1 @@ -1.5.1 \ No newline at end of file +1.5.2 \ No newline at end of file diff --git a/helpers/wordpress/plugins/malcare-security.txt b/helpers/wordpress/plugins/malcare-security.txt index 80572fce6e4..7442c84e89e 100644 --- a/helpers/wordpress/plugins/malcare-security.txt +++ b/helpers/wordpress/plugins/malcare-security.txt @@ -1 +1 @@ -4.84 \ No newline at end of file +4.86 \ No newline at end of file diff --git a/helpers/wordpress/plugins/redirection.txt b/helpers/wordpress/plugins/redirection.txt index d758bc62f66..769f5e0bec7 100644 --- a/helpers/wordpress/plugins/redirection.txt +++ b/helpers/wordpress/plugins/redirection.txt @@ -1 +1 @@ -5.3.8 \ No newline at end of file +5.3.9 \ No newline at end of file diff --git a/helpers/wordpress/plugins/the-events-calendar.txt b/helpers/wordpress/plugins/the-events-calendar.txt index a4f1569d8ea..a0c2cf5cd77 100644 --- a/helpers/wordpress/plugins/the-events-calendar.txt +++ b/helpers/wordpress/plugins/the-events-calendar.txt @@ -1 +1 @@ -6.0.7.1 \ No newline at end of file +6.0.8 \ No newline at end of file